
        /* Inline styles from promos.html adapted */
        .article-section {
            padding: 4rem 0 1rem;
            background: linear-gradient(to bottom, var(--background), hsla(45, 100%, 51%, 0.03));
        }

        .article-section h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .article-meta {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--muted-foreground);
            font-size: 1.1rem;
        }

        .article-content {
            max-width: 1100px;
            margin: 0 auto;
            line-height: 1.8;
            font-size: 1.15rem;
        }

        .article-content h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin: 3rem 0 1.5rem;
            letter-spacing: 0.03em;
        }

        .article-content h3 {
            font-size: 1.6rem;
            color: var(--accent);
            margin: 2.5rem 0 1rem;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            color: var(--foreground);
        }

        .article-content strong {
            color: var(--accent);
            font-weight: 700;
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }

        .article-content table th, .article-content table td {
            padding: 1rem;
            border: 1px solid var(--border);
            text-align: left;
        }

        .article-content table th {
            background-color: var(--primary);
            color: var(--primary-foreground);
        }

        .article-content ul {
            padding-left: 1.5rem;
            list-style-type: disc;
            margin-bottom: 1.5rem;
        }

        .article-content li {
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .article-section h1 {
                font-size: 3rem;
            }
            
            .article-content h2 {
                font-size: 2rem;
            }
            
        }
