:root {
            --primary: #D92B2B; 
            --secondary: #FFD700; 
            --accent: #2E8B57; 
            --text-dark: #232323; 
            --text-light: #F9F9F9; 
            --bg-light: #FFF8E7; 
            --bg-dark: #1A1A2E; 
            --shadow: 0 4px 15px rgba(0,0,0,0.18);
            --transition: all 0.3s ease-in-out;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            line-height: 1.9;
            color: var(--text-dark);
            background-color: var(--bg-light);
            padding-bottom: 7rem;
            word-spacing: 0.07em;
            letter-spacing: -0.01em;
        }
        header {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 1.3rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .nav-container {
            max-width: 1450px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo span {
            font-size: 2.4rem;
            font-weight: 900;
            text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
        }
        .nav-links {
            display: flex;
            gap: 2.7rem;
            align-items: center;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.08rem;
            transition: var(--transition);
            position: relative;
            padding: 0.3rem 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--secondary);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 7px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 1.08rem;
            text-align: center;
            font-family: inherit;
        }
        .btn-download {
            background-color: var(--primary);
            color: var(--text-light);
            margin-right: 1.2rem;
            box-shadow: 0 3px 10px rgba(217, 43, 43, 0.25);
        }
        .btn-download:hover {
            background-color: #b82323;
            transform: translateY(-4px);
            box-shadow: 0 7px 15px rgba(217, 43, 43, 0.35);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--bg-dark);
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.25);
        }
        .btn-login:hover {
            background-color: #e6c800;
            transform: translateY(-4px);
            box-shadow: 0 7px 15px rgba(255, 215, 0, 0.35);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--secondary);
            z-index: 1001;
        }
        .container {
            max-width: 1350px;
            margin: 3.5rem auto;
            padding: 0 2.2rem;
        }
        .intro-section {
            background-color: white;
            border-radius: 15px;
            padding: 3.5rem;
            margin-bottom: 4.5rem;
            box-shadow: var(--shadow);
            border-top: 6px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        .intro-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 35%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), transparent);
            z-index: 0;
            border-radius: 0 15px 15px 0;
        }
        .intro-section h1 {
            font-size: 3.3rem;
            color: var(--accent);
            margin-bottom: 2.2rem;
            text-align: center;
            line-height: 1.4;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 4px rgba(46, 139, 87, 0.1);
        }
        .intro-section .subtitle {
            font-size: 1.3rem;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 2.8rem;
            font-style: italic;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
            font-weight: 500;
        }
        .intro-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 3rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            position: relative;
            z-index: 1;
            border: 3px solid var(--secondary);
        }
        .intro-content {
            position: relative;
            z-index: 1;
        }
        .intro-content p {
            font-size: 1.2rem;
            margin-bottom: 2.2rem;
            text-align: justify;
            line-height: 2;
        }
        .intro-content strong {
            color: var(--primary);
            font-weight: 600;
        }
        .key-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            background-color: var(--bg-light);
            padding: 2.5rem;
            border-radius: 10px;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .info-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--accent);
            transition: var(--transition);
        }
        .info-card:hover {
            transform: translateX(7px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
        }
        .info-card h4 {
            font-size: 1.35rem;
            color: var(--accent);
            margin-bottom: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.9rem;
        }
        .info-card p {
            font-size: 1.1rem;
            color: var(--text-dark);
            line-height: 1.8;
        }
        section {
            background-color: white;
            border-radius: 15px;
            padding: 3.5rem;
            margin-bottom: 4.5rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            border-radius: 0 0 15px 15px;
        }
        section h2 {
            font-size: 2.6rem;
            color: var(--accent);
            margin-bottom: 3rem;
            padding-bottom: 1.5rem;
            border-bottom: 4px solid var(--secondary);
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        section h2 span {
            margin-right: 1.5rem;
            color: var(--primary);
            font-size: 2.8rem;
        }
        section h3 {
            font-size: 1.95rem;
            color: var(--accent);
            margin: 3rem 0 2rem;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        section h3::before {
            content: '🌟';
            margin-right: 1.2rem;
            color: var(--secondary);
        }
        section h4 {
            font-size: 1.55rem;
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            position: relative;
            z-index: 1;
            padding-left: 0.8rem;
            border-left: 3px solid var(--secondary);
        }
        section p {
            font-size: 1.15rem;
            margin-bottom: 2.2rem;
            text-align: justify;
            line-height: 1.9;
            position: relative;
            z-index: 1;
        }
        section ul {
            margin-left: 3rem;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
        }
        section li {
            font-size: 1.12rem;
            margin-bottom: 1.6rem;
            line-height: 1.9;
            position: relative;
            z-index: 1;
            padding-left: 0.8rem;
        }
        section li::before {
            content: '•';
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: -1.2rem;
        }
        .section-img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 10px;
            margin: 3rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            position: relative;
            z-index: 1;
            border: 2px solid var(--accent);
        }
        .grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
            position: relative;
            z-index: 1;
        }
        .grid-card {
            background-color: var(--bg-light);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        .grid-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }
        .grid-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.18);
        }
        .grid-card h4 {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 1.8rem;
            text-align: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            border-left: none;
            padding-left: 0;
        }
        .grid-card p {
            line-height: 1.85;
        }
        .testimonial-container {
            background-color: var(--bg-light);
            border-radius: 12px;
            padding: 3rem;
            margin: 4rem 0;
            border-left: 6px solid var(--primary);
            position: relative;
            z-index: 1;
        }
        .testimonial-container::after {
            content: '"';
            position: absolute;
            bottom: -30px;
            right: 30px;
            font-size: 7rem;
            color: var(--primary);
            opacity: 0.15;
            font-family: Georgia, serif;
        }
        .testimonial {
            font-style: italic;
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 2.05;
        }
        .testimonial-author {
            font-weight: 600;
            color: var(--accent);
            font-size: 1.2rem;
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        .testimonial-author::before {
            content: '—';
            margin-right: 1rem;
            color: var(--primary);
            font-size: 1.5rem;
        }
        .timeline {
            position: relative;
            max-width: 1250px;
            margin: 5rem auto;
            position: relative;
            z-index: 1;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 7px;
            background-color: var(--secondary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3.5px;
            border-radius: 5px;
        }
        .timeline-item {
            padding: 15px 45px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 32px;
            height: 32px;
            right: -18px;
            background-color: white;
            border: 5px solid var(--primary);
            top: 20px;
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(217, 43, 43, 0.15);
        }
        .left {
            left: 0;
        }
        .right {
            left: 50%;
        }
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 28px;
            width: 0;
            z-index: 2;
            right: 35px;
            border: medium solid var(--primary);
            border-width: 12px 0 12px 12px;
            border-color: transparent transparent transparent var(--primary);
        }
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 28px;
            width: 0;
            z-index: 2;
            left: 35px;
            border: medium solid var(--primary);
            border-width: 12px 12px 12px 0;
            border-color: transparent var(--primary) transparent transparent;
        }
        .right::after {
            left: -19px;
        }
        .timeline-content {
            padding: 2.5rem;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .timeline-content:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .timeline-content h4 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.45rem;
            border-left: none;
            padding-left: 0;
        }
        .timeline-content p {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .festival-connection {
            background-color: rgba(46, 139, 87, 0.07);
            padding: 2.8rem;
            border-radius: 12px;
            margin: 4rem 0;
            border: 1px solid rgba(46, 139, 87, 0.15);
            position: relative;
            z-index: 1;
        }
        .festival-connection h4 {
            color: var(--accent);
            margin-bottom: 2rem;
            font-size: 1.6rem;
            text-align: center;
            border-left: none;
            padding-left: 0;
        }
        .festival-connection p {
            margin-bottom: 1.8rem;
        }
        .challenge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.2rem;
            margin: 3rem 0;
            position: relative;
            z-index: 1;
        }
        .challenge-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--secondary);
        }
        .challenge-card h5 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        .challenge-card p {
            font-size: 1.08rem;
            line-height: 1.8;
        }
        .bottom-section {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 5rem 2.2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-top: 6rem;
        }
        .bottom-container {
            max-width: 1350px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
        }
        .category-section h3,
        .tags-section h3,
        .recommendation-section h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            padding-bottom: 1.2rem;
            border-bottom: 2px solid rgba(255, 215, 0, 0.35);
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.4rem;
        }
        .category-links a {
            color: var(--text-light);
            background-color: rgba(217, 43, 43, 0.25);
            padding: 0.9rem 1.6rem;
            border-radius: 30px;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .category-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(217, 43, 43, 0.3);
        }
        .tags-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }
        .tags-links a {
            color: var(--bg-dark);
            background-color: var(--secondary);
            padding: 0.8rem 1.4rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.05rem;
            transition: var(--transition);
        }
        .tags-links a:hover {
            background-color: #e6c800;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(255, 215, 0, 0.3);
        }
        .recommendation-content {
            background-color: rgba(255, 255, 255, 0.07);
            padding: 2.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .recommendation-content p {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            line-height: 1.9;
            color: var(--text-light);
        }
        .recommendation-content strong {
            color: var(--secondary);
            font-weight: 600;
        }
        .recommendation-btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--bg-dark);
            padding: 1rem 2rem;
            border-radius: 7px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .recommendation-btn:hover {
            background-color: #e6c800;
            transform: translateY(-4px);
            box-shadow: 0 7px 15px rgba(255, 215, 0, 0.35);
        }
        .copyright {
            text-align: center;
            padding-top: 4rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 1.1rem;
            color: #ddd;
            line-height: 2;
        }
        .copyright a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .copyright a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .text-highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 0.4rem 0.7rem;
            border-radius: 6px;
            font-weight: 500;
            color: var(--text-dark);
        }
        .callout {
            background-color: rgba(217, 43, 43, 0.1);
            padding: 2rem;
            border-radius: 10px;
            margin: 3.5rem 0;
            border-left: 5px solid var(--primary);
            position: relative;
            z-index: 1;
        }
        .callout p {
            margin-bottom: 0;
            font-weight: 500;
            font-size: 1.15rem;
            line-height: 1.85;
        }
        .spacing {
            margin: 3rem 0;
        }
        .quote-mark {
            font-size: 3.5rem;
            color: var(--primary);
            opacity: 0.3;
            position: relative;
            top: 1.2rem;
            font-family: Georgia, serif;
        }
        .token-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 2.5rem 0;
        }
        .token-item {
            background-color: white;
            padding: 1.2rem 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 1px solid var(--secondary);
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
            min-width: 250px;
        }
        .token-item span {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.8rem;
        }
        .reference-list {
            list-style-type: decimal;
            margin-left: 3.5rem;
            margin-bottom: 3rem;
        }
        .reference-list li {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .timeline::after {
                left: 35px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 80px;
                padding-right: 30px;
            }
            .timeline-item::before {
                left: 65px;
                border: medium solid var(--primary);
                border-width: 12px 12px 12px 0;
                border-color: transparent var(--primary) transparent transparent;
            }
            .left::after, .right::after {
                left: 18px;
            }
            .right {
                left: 0%;
            }
            .intro-section h1 {
                font-size: 2.9rem;
            }
            section h2 {
                font-size: 2.4rem;
            }
            section h3 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 2rem;
            }
            .btn {
                padding: 0.8rem 1.6rem;
                font-size: 1rem;
            }
            .intro-section {
                padding: 3rem;
            }
            section {
                padding: 3rem;
            }
            .grid-layout {
                gap: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--bg-dark);
                padding: 3rem 2rem;
                gap: 2.5rem;
                box-shadow: 0 15px 25px rgba(0,0,0,0.25);
                border-radius: 0 0 15px 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 1.8rem;
                width: 100%;
            }
            .btn-download {
                margin-right: 0;
                width: 100%;
            }
            .btn-login {
                width: 100%;
            }
            .intro-section {
                padding: 2.5rem;
            }
            .intro-section h1 {
                font-size: 2.5rem;
            }
            .intro-img, .section-img {
                height: 350px;
            }
            section {
                padding: 2.5rem;
            }
            section h2 {
                font-size: 2.2rem;
            }
            section h3 {
                font-size: 1.7rem;
            }
            .grid-layout {
                grid-template-columns: 1fr;
            }
            .key-info {
                grid-template-columns: 1fr;
            }
            .timeline-item {
                padding-left: 70px;
            }
            .timeline-content {
                padding: 2rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.9rem;
            }
            .logo span {
                font-size: 2.1rem;
            }
            .intro-section {
                padding: 2rem;
            }
            .intro-section h1 {
                font-size: 2.2rem;
            }
            .intro-section .subtitle {
                font-size: 1.15rem;
            }
            .intro-img, .section-img {
                height: 280px;
            }
            section {
                padding: 2rem;
            }
            section h2 {
                font-size: 2rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            section h2 span {
                margin-right: 0;
                font-size: 2.2rem;
            }
            section h3 {
                font-size: 1.6rem;
            }
            .bottom-section {
                padding: 3.5rem 1.8rem;
            }
            .bottom-container {
                gap: 3rem;
            }
            .token-item {
                min-width: 100%;
            }
            .timeline-item {
                padding-left: 60px;
            }
            .timeline::after {
                left: 25px;
            }
            .timeline-item::before {
                left: 55px;
            }
        }
        @media (max-width: 480px) {
            .intro-section h1 {
                font-size: 2rem;
            }
            .intro-img, .section-img {
                height: 240px;
            }
            .testimonial-container {
                padding: 2.5rem 1.5rem;
            }
            .token-list {
                gap: 1rem;
            }
            .reference-list {
                margin-left: 2.5rem;
            }
        }
