 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #00ff88;
            --dark-green: #00cc6a;
            --light-green: #66ffaa;
            --forest-green: #1a4d3a;
            --dark-bg: #0a1a0f;
            --card-bg: #1a2f1a;
            --text-light: #ffffff;
            --text-gray: #cccccc;
            --gradient: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        }

        body {
            font-family: 'Arial', sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 26, 15, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(10, 26, 15, 0.98);
            box-shadow: 0 2px 20px rgba(0, 255, 136, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-green);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            animation: pulse 2s infinite;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-green);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary-green);
            transition: all 0.3s ease;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--forest-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('image/banner3.jpeg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--text-gray);
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--gradient);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }

        /* Section Styles */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-green);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gradient);
        }

        /* Featured Reviews Section */
        .featured-reviews {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .featured-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 136, 0.1);
            position: relative;
            overflow: hidden;
        }

        .featured-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .featured-card:hover::before {
            left: 100%;
        }

        .featured-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
        }

        .featured-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .featured-icon {
            font-size: 2rem;
            color: var(--primary-green);
        }

        .rating {
            display: flex;
            gap: 0.2rem;
            margin: 1rem 0;
        }

        .rating i {
            color: #ffd700;
        }

        /* Reviews Grid */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .review-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 136, 0.1);
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 255, 136, 0.15);
        }

        /* Guides Section */
        .guides-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .guide-category {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(0, 255, 136, 0.1);
        }

        .guide-list {
            list-style: none;
            margin-top: 1rem;
        }

        .guide-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0, 255, 136, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .guide-list li:hover {
            background: rgba(0, 255, 136, 0.05);
            padding-left: 1rem;
        }

        .guide-list li:last-child {
            border-bottom: none;
        }

        /* Video Section */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .video-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 136, 0.1);
        }

        .video-thumbnail {
            height: 200px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            position: relative;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
        }

        .video-info {
            padding: 1.5rem;
        }

        /* Tips Section */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .tip-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 136, 0.1);
        }

        .tip-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        /* Categories Section */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .category-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 136, 0.1);
            cursor: pointer;
        }

        .category-card:hover {
            background: rgba(0, 255, 136, 0.1);
            transform: translateY(-5px);
        }

        .category-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        /* Community Reviews */
        .community-reviews {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .user-review {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(0, 255, 136, 0.1);
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .user-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bold;
        }
        .user-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Newsletter Section */
        .newsletter {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            margin-top: 2rem;
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 500px;
            margin: 2rem auto 0;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem;
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 10px;
            background: var(--dark-bg);
            color: var(--text-light);
            font-size: 1rem;
        }

        .newsletter-button {
            padding: 1rem 2rem;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .newsletter-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
        }

        /* Enhanced Footer */
        .footer {
            background: linear-gradient(135deg, var(--forest-green), var(--dark-bg));
            padding: 4rem 2rem 2rem;
            margin-top: 5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-green);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(0, 255, 136, 0.1);
            border-radius: 50%;
            color: var(--primary-green);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-green);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 255, 136, 0.2);
            padding-top: 2rem;
            text-align: center;
            color: var(--text-gray);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--dark-bg);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section {
                padding: 3rem 1rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-main {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
 .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: var(--card-bg);
        border-radius: 10px;
        margin-bottom: 1rem;
        border: 1px solid rgba(0, 255, 136, 0.1);
        overflow: hidden;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        font-size: 1.2rem;
        color: var(--primary-green);
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(0, 255, 136, 0.05);
    }

    .faq-question i.fa-question-circle {
        margin-right: 0.5rem;
    }

    .faq-toggle {
        transition: transform 0.3s ease;
    }

    .faq-toggle.active {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 1.5rem;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-answer.active {
        max-height: 200px; /* Adjust based on content */
        padding: 1rem 1.5rem;
    }

    .faq-answer p {
        color: var(--text-gray);
    }

    .faq-answer a {
        color: var(--primary-green);
        text-decoration: none;
    }
a {
        text-decoration: none;
        color: inherit;
    }
    
    .faq-answer a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .faq-question {
            font-size: 1.1rem;
        }

        .faq-answer.active {
            max-height: 300px; /* Increased for mobile to accommodate longer text */
        }
        .guide-category {
            max-width: 300px;
            margin: 0 auto;
          
        }
    }

    /* Review card CTA button styles */
.review-card .cta-button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Rating span styles */
.rating span {
    margin-left: 0.5rem;
    color: var(--text-gray);
}

/* Featured card tag styles */
.featured-card .tag {
    background: rgba(0, 255, 136, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.featured-card .tag + .tag {
    margin-left: 0.5rem;
}

/* Review card gameplay duration styles */
.review-card .gameplay-duration {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Video card info styles */
.video-info .video-meta {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer bottom additional text */
.footer-bottom p.additional-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Newsletter section small print */
.newsletter p.small-print {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* Team card image styles */
.team-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer heart icon */
.footer-bottom i.fa-heart,
.footer-section i.fa-heart {
    color: var(--primary-green);
}