
        .video-container,
        .youtube-video-container {
            max-width: 100%;
            overflow: hidden;
        }

        .redirect-content {
            max-width: 90vw;
            padding: 20px;
        }

        /* Page Hero */
        .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);
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
        }

        .section {
            padding: 40px 20px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .content-title {
            font-size: 32px;
            color: var(--lime-light);
            margin-bottom: 24px;
            font-family: var(--font-display);
            margin-top: 60px;
        }

        details {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        summary {
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 700 !important;
            font-size: 16px;
            color: var(--white);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: "+";
            font-size: 24px;
            color: var(--lime-green);
            transition: transform 0.3s;
        }

        details[open] summary::after {
            content: "−";
        }

        details[open] summary {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-content {
            padding: 20px 24px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.7;
        }
