
        .video-container,
        .youtube-video-container {
            max-width: 100%;
            overflow: hidden;
        }

        .redirect-content {
            max-width: 90vw;
            padding: 20px;
        }

        .page-hero {
            padding-top: calc(var(--navbar-height) + var(--disclaimer-height) + 80px);
            padding-bottom: 80px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(204, 255, 0, 0.1) 0%, transparent 60%);
        }

        .page-title {
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 700 !important;
            margin-bottom: 24px;
            color: var(--white);
        }

        .highlight {
            color: var(--lime-green);
        }

        .section {
            padding: 40px 20px;
        }

        .article-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--near-black);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .article-header {
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px;
        }

        .article-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700 !important;
            color: var(--white);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .article-meta {
            color: var(--gray);
            font-size: 14px;
        }

        .article-body {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        .article-body p {
            margin-bottom: 24px;
        }

        .article-body strong {
            color: var(--lime-green);
        }

        .footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 80px 40px 40px;
            background: var(--near-black);
            margin-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-section h3 {
            color: var(--lime-green) !important;
            margin-bottom: 24px;
            font-size: 18px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--lime-green);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
        }

        .disclaimer {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .redirect-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .redirect-modal.active {
            display: flex;
            opacity: 1;
        }

        .redirect-icon {
            font-size: 40px;
            color: var(--lime-green);
            margin-bottom: 20px;
        }

        .redirect-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 24px;
        }
