    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap');

    :root {
        --primary: #6c5ce7;
        --secondary: #a29bfe;
        --accent: #fd79a8;
        --dark: #2d3436;
        --light: #dfe6e9;
        --success: #00b894;
        --warning: #fdcb6e;
        --danger: #d63031;
        --background: #f9f9f9;
        --card-bg: #ffffff;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Open Sans', sans-serif;
        color: var(--dark);
        background-color: var(--background);
        overflow-x: hidden;
        line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
        scroll-margin-top: 80px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        font-size: 2.5rem;
    }

    .section-title:after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary);
        margin: 15px auto;
        border-radius: 2px;
    }

    .spotlight-list {
        margin: 20px 0;
        padding-left: 20px
    }

    .carousel-container {
        overflow: hidden;
        position: relative;

    }

    .carousel {
        display: flex;
        transition: transform 0.5s ease;
    }

    .carousel-item {
        min-width: 100%;
        text-align: center;
        padding: 20px;
    }

    .carousel-prev {

        position: absolute;
        top: 50%;
        left: 10px;
        background: var(--primary);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
    }
.cta {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
          color: white;
          text-align: center;
}
    .carousel-next {

        position: absolute;
        top: 50%;
        right: 10px;
        background: var(--primary);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
    }

    .btn {
        margin-top: 15px;
        display: inline-block;
        padding: 12px 28px;
        background: var(--primary);
        color: white;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
        background: #5d4ae0;
    }

    /* Header & Navigation */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        transition: all 0.3s ease;
    }

    header.scrolled {
        padding: 10px 0;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .logo i {
        margin-right: 8px;
    }

    .nav-menu {
        display: flex;
        list-style: none;
    }

    .nav-menu li {
        margin: 0 15px;
    }

    .nav-menu a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-menu a:after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover:after {
        width: 100%;
    }

    .nav-menu a:hover {
        color: var(--primary);
    }

    .hamburger {
        display: none;
        cursor: pointer;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--dark);
        transition: all 0.3s ease;
    }

    /* Hero Section */
    .hero {
        height: 80vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, rgba(24, 24, 24, 0.5), rgba(162, 155, 254, 0.6)), url('image/banner3.jpg') no-repeat center center/cover;
        color: white;
        text-align: center;
        position: relative;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
        animation: fadeIn 1.5s ease;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Guide Grid */
    .guide-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }

    .guide-card {
        background: var(--card-bg);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .guide-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .guide-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .guide-content {
        padding: 20px;
    }

    .guide-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .guide-desc {
        color: #666;
        font-size: 0.9rem;
    }

    /* Accordion */
    .accordion {
        max-width: 800px;
        margin: 0 auto;
    }

    .accordion-item {
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .accordion-header {
        background: var(--primary);
        color: white;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .accordion-header:hover {
        background: #5d4ae0;
    }

    .accordion-content {
        background: var(--card-bg);
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .accordion-content.active {
        padding: 20px;
        max-height: 500px;
    }

    .accordion-icon {
        transition: transform 0.3s ease;
    }

    .accordion-icon.active {
        transform: rotate(180deg);
    }

    /* Tabs */
    .tabs-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .tabs {
        display: flex;
        border-bottom: 2px solid var(--light);
        margin-bottom: 20px;
    }

    .tab {
        flex: 1;
        text-align: center;
        padding: 15px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .tab:hover,
    .tab.active {
        background: var(--primary);
        color: white;
    }

    .tab-content {
        display: none;
        background: var(--card-bg);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .tab-content.active {
        display: block;
    }

    /* Counter */
    .counter-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        text-align: center;
    }

    .counter-card {
        background: var(--card-bg);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .counter-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 10px;
    }

    /* Strategy Steps */
    .strategy-steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .step {
        display: flex;
        gap: 15px;
        align-items: flex-start;
        background: var(--card-bg);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .step-number {
        background: var(--primary);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        font-weight: bold;
    }

    /* Game Spotlight */
    .spotlight-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        background: linear-gradient(to right, var(--card-bg) 50%, #f1f2f6 50%);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .spotlight-content {
        padding: 40px;
    }

    .spotlight-image {
        height: 100%;
        min-height: 400px;
        background: url('image/bubble3.jpg') no-repeat center center/cover;
    }

    /* Interactive Guide */
    .interactive-guide {
        max-width: 800px;
        margin: 0 auto;
        background: var(--card-bg);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .guide-option {
        padding: 15px;
        border: 1px solid var(--light);
        border-radius: 8px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .guide-option:hover {
        background: var(--light);
    }

    .guide-option.selected {
        background: var(--primary);
        color: white;
    }

    .guide-result {
        margin-top: 20px;
        font-weight: 600;
        display: none;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .animate {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease;
    }

    .animate-slide {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.8s ease;
    }

    .animate.active,
    .animate-slide.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .spotlight-container {
            grid-template-columns: 1fr;
        }

        .spotlight-image {
            min-height: 300px;
        }
    }

    @media (max-width: 768px) {
        .hamburger {
            display: block;
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            gap: 0;
            flex-direction: column;
            background: white;
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu li {
            margin: 15px 0;
        }

        .hero h1 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 576px) {
        .section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2rem;
        }
    }