@import url('../typography-responsive.css');

:root {
            --yellow: #ffbd59;
            --red: #ff3131;
            --white: #fffef8;
            --black: #080517;
            --font-display: 'Archivo Black', sans-serif;
            --font-body: 'Archivo', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--black);
            color: var(--white);
            line-height: 1.8;
        }

        .article-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        article {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 189, 89, 0.1);
            border-radius: 8px;
            padding: 3rem;
        }

        .breadcrumb {
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .breadcrumb a {
            color: var(--yellow);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .article-header {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid rgba(255, 189, 89, 0.2);
        }

        .article-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            flex-wrap: wrap;
        }

        .article-category {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background-color: rgba(255, 49, 49, 0.2);
            color: var(--red);
            border-radius: 20px;
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        .article-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            color: var(--yellow);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .article-excerpt {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        .article-content {
            color: rgba(255, 255, 255, 0.9);
        }

        .article-content h2 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            color: var(--yellow);
            margin: 2.5rem 0 1.5rem 0;
        }

        .article-content h2:first-child {
            margin-top: 0;
        }

        .article-content h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: var(--red);
            margin: 1.5rem 0 1rem 0;
        }

        .article-content p {
            margin-bottom: 1rem;
        }

        .article-content ul,
        .article-content ol {
            margin: 1rem 0 1rem 2rem;
        }

        .article-content li {
            margin-bottom: 0.75rem;
        }

        .article-content strong {
            color: var(--yellow);
        }

        .comparison-table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 189, 89, 0.2);
            border-radius: 8px;
            overflow: hidden;
        }

        .comparison-table thead {
            background: rgba(255, 189, 89, 0.15);
        }

        .comparison-table th {
            padding: 1rem;
            text-align: left;
            color: var(--yellow);
            font-weight: 600;
            border-bottom: 2px solid rgba(255, 189, 89, 0.2);
        }

        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 189, 89, 0.1);
            color: rgba(255, 255, 255, 0.9);
        }

        .comparison-table tr:hover {
            background: rgba(255, 189, 89, 0.05);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .strategy-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 189, 89, 0.2);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            transition: all 0.3s;
        }

        .strategy-card:hover {
            border-color: var(--yellow);
            background: rgba(255, 189, 89, 0.08);
        }

        .strategy-card h3 {
            margin-top: 0;
            color: var(--yellow);
        }

        .strategy-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1rem 0;
        }

        .benefit-item {
            background: rgba(255, 189, 89, 0.1);
            padding: 1rem;
            border-radius: 4px;
            border-left: 3px solid var(--red);
        }

        .benefit-item strong {
            color: var(--yellow);
        }

        .article-highlight {
            background-color: rgba(255, 189, 89, 0.1);
            border-left: 4px solid var(--yellow);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 4px;
        }

        .article-highlight strong {
            color: var(--yellow);
        }

        .article-cta {
            background-color: #0d0a1f;
            border: 2px solid var(--yellow);
            padding: 2rem;
            border-radius: 8px;
            margin: 3rem 0;
            text-align: center;
        }

        .article-cta h3 {
            color: var(--yellow);
            margin-top: 0;
        }

        .article-cta a {
            display: inline-block;
            padding: 0.75rem 2rem;
            background-color: var(--yellow);
            color: var(--black);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .article-cta a:hover {
            background-color: var(--white);
            transform: translateY(-2px);
        }

        .back-to-blog {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(255, 189, 89, 0.2);
        }

        .back-to-blog a {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: transparent;
            border: 2px solid var(--yellow);
            color: var(--yellow);
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .back-to-blog a:hover {
            background-color: var(--yellow);
            color: var(--black);
        }

        .footer {
            background-color: rgba(0, 0, 0, 0.5);
            border-top: 4px solid var(--yellow);
            padding: 3rem 0;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links {
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            display: inline-block;
            margin: 0 1rem;
            color: var(--yellow);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .article-title {
                font-size: 1.75rem;
            }

            .article-container {
                padding: 2rem 1rem;
            }

            article {
                padding: 1.5rem;
            }

            .comparison-table {
                font-size: 0.9rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem;
            }

            .strategy-benefits {
                grid-template-columns: 1fr;
            }
        }
