/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

:root {
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent-purple: #667eea;
    --accent-pink: #f093fb;
    --accent-blue: #4facfe;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.2;
}


.gradient-text {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink), var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
   
}

.testimonial-cards span {
    font-size: 14px;
}

.section-boxes {
    display: flex !important;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 15px;
}

.section-check {
      display: flex;
    align-items: center;
    gap: 10px;
    width: 30px; /* Adjust the size as per your requirement */
    height: 30px; /* Adjust the size as per your requirement */
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    border-radius: 50%;
    justify-content: center; /* Centering the content */
    color: white; /* Adjust text color */
    font-size: 16px; /* Adjust text size */
}

.button-sects {
    margin-top: 40px;
    text-align: center;
}

.button-sects button {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
}

.framehight {
    width: 100%;
    height: 500px;
    border: none;
    overflow: hidden;
    border-radius: 10px
}

.gif-sect {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}


.gif-sect img {
    width: 100%;
    border-radius: 10px;
}


.stream-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    width: 100%;   
    

}

/* Glass Morphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
    width: 100%;
}

.glass-card-1 {
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    opacity: 0.8;
    transition: var(--transition);
    width: 100%;
    color: black;
}

.glass-card-1 h3 {
    font-weight: 600;

}

.program-berfungsi {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 50px;
    margin-top: 50px;
}

.glass-card-1 p {
    font-weight: 600;
}

.glass-card-2 {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink), var(--accent-blue));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
    opacity: 0.8;
    width: 100%;
    color: black;
}

.glass-card-2 h3 {
    font-weight: 600;
 
}

.glass-card-2 p {
    font-weight: 600;
}

.glass-card-3 {
    background: linear-gradient(90deg, #00bfff, #1e90ff);

    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
     opacity: 0.8;
    transition: var(--transition);
    width: 100%;
    color: black;
}

.glass-card-3 h3 {
    font-weight: 600;

}

.glass-card-3 p {
    font-weight: 600;
}

.glass-card-4 {
    background: linear-gradient(90deg, #f0e68c, #d3d3d3);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
     opacity: 0.8;
    transition: var(--transition);
    width: 100%;
    color: black;
}

.glass-card-4 h3 {
    font-weight: 600;

}

.glass-card-4 p {
    font-weight: 600;
}

.glass-card-5 {
    background: linear-gradient(90deg, #98fb98, #66cdaa);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
    width: 100%;
     opacity: 0.8;
     color: black;
}

.img-sect {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.text-desc {
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 25px;
}



.img-sect img {
    width: 40px;
    height: 40px;
}

.section-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;

    width: 100%;
    max-width: 300px;
    height: 270px;
    margin-inline: auto;
}

.glass-card-5 h3 {
    font-weight: 600;
 
}

.glass-card-5 p {
    font-weight: 600;
}

.glass-card-6 {
    
    background: linear-gradient(90deg, #00bfff, #1e90ff);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
    width: 100%;
     opacity: 0.8;
     color: black;
}

.glass-card-6 h3 {
    font-weight: 600;
  
}

.glass-card-6 p {
    font-weight: 600;
}



.glass-cards {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1rem;
    transition: var(--transition);
}

.glass-cardss {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
    width: 100%;
    height: 450px;

    display: flex;
    align-items: center;
}

.box-details {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
}

.last-card {
    text-align: center;
    margin-top: 50px;
}

.cta-button a {
    cursor: pointer;
}

.nav-brand img {
    width: 100%;
    max-width: 180px;
}

.footer-brand img {
    width: 100%;
    max-width: 180px;
}

.footer-brand {
    width: 500px;
}



/* Neumorphic Buttons */
.neuro-btn {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
        background: linear-gradient(90deg, #ff7f00, #ffbc00);

    color: black;
    font-weight: 600;
   
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.neuro-btns {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
        background: linear-gradient(90deg, #ff7f00, #ffbc00);

    color: black;
    font-weight: 600;
   

    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    width: 100%;
    margin: 0;
    margin-top: 20px;
}

.neuro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        25px 25px 70px #0d0d0d,
        -25px -25px 70px #333333,
        inset 0 0 0 1px rgba(255,255,255,0.2),
        0 0 40px rgba(102, 126, 234, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 25px 25px 70px #0d0d0d, -25px -25px 70px #333333, inset 0 0 0 1px rgba(255,255,255,0.2), 0 0 40px rgba(102, 126, 234, 0.3); }
    100% { box-shadow: 25px 25px 70px #0d0d0d, -25px -25px 70px #333333, inset 0 0 0 1px rgba(255,255,255,0.2), 0 0 40px rgba(102, 126, 234, 0.8); }
}

.glass-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.glass-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-float {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 3s ease-in-out infinite;
}

.hero-float-1 {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    top: 25%;
    left: 25%;
}

.hero-float-2 {
    background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    bottom: 25%;
    right: 25%;
    animation-delay: 1s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: #000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}





.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.content {
    margin-top: 30px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    transition: width 0.3s ease;
}

/* Dropdown style */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 150px;
  z-index: 1000;
  padding: 0;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on toggle */
.dropdown.open .dropdown-content {
  display: block;
}

/* Mobile menu open */
.mobile-menu.show {
  display: block;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}



.mobile-menu-btn {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20rem;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(./assets/Weplay_Banner_LP_big.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.product-mockup {
    margin-top: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* New Section with Image on the Left and Text on the Right */
.gaming-app {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.gaming-app .section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    text-align: left;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gaming-app .section-subtitle {
    font-size: 1.2rem;
    text-align: left;
    color: oklch(87.2% .01 258.338);
    margin-bottom: 2.5rem;
    max-width: 45rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.app-image {
    flex: 1;
    max-width: 50%;
    margin-bottom: 2rem;
}

.app-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    
}

.app-text {
    flex: 2;
    color: var(--text-primary);
    max-width: 60%;
}

/* Features List Layout (Horizontal) */
.features-list {
    display: flex;  /* Flexbox to display items in a row */
    flex-wrap: wrap; /* Allow items to wrap to next line on smaller screens */
    padding-left: 0;
    margin-top: 2rem;
    gap: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    flex: 1 1 calc(33.33% - 2rem); /* Make each item take up 1/3 of the width */
    min-width: 250px;  /* Ensure each item has a minimum width */
}

.features-list i {
    color: var(--accent-purple);
    font-size: 1.4rem;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .app-content {
        flex-direction: column;  /* Stack the image and text */
        gap: 2rem;
        text-align: center;
    }

    .app-image {
        max-width: 80%;
    }

    .app-text {
        max-width: 100%;
    }

    .features-list {
        justify-content: center; /* Center-align the list */
    }

    .features-list .feature-item {
        flex: 1 1 100%;  /* Make each item take the full width */
        text-align: left;
        margin-bottom: 1rem; /* Add margin for mobile */
    }
}

/* General Section Styling */
.how-it-works {
    padding: 6rem 0;
    background-color: #1e1e2f;
    color: #fff;
}


.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
   background: linear-gradient(90deg, #ff7f00, #ffbc00); /* Orange gradient */
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2.5rem;  /* Adjust the font size as needed */
    text-align: center; 
}

.section-subtitle {
    font-size: 1.2rem;
    color: oklch(87.2% .01 258.338);
    margin-bottom: 2rem;
}

.section-subtitles {
    color: oklch(87.2% .01 258.338);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Card Layout for Downline System */
.downline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #2f2f3a;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-header {
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #fff;
}

.card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.info-text {
    color: #bbb;
    font-size: 1.1rem;
}

.info-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #10b981;
}



/* Responsive Design */
@media (max-width: 768px) {
    .downline-cards {
        grid-template-columns: 1fr; /* Stack the cards vertically on mobile */
    }

    .card-body {
        flex-direction: column;
        text-align: center;
    }
}

.section-downline-card {
    display: flex;
    align-items: start;
    justify-content: center;

    width: 100%;

    margin-top: 100px;
}

.section-downline-cards {
    display: flex;
    align-items: start;
    justify-content: center;

    width: 100%;

    margin-top: 100px;
}



.section-downline-detail {
    display: flex;
    flex-direction: column;
    justify-content: start;

    width: 50%;
    margin-inline: auto;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;  /* Make it circular */
    background: linear-gradient(90deg, #ff7f00, #ffbc00);  /* Orange gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-right: 1rem;  /* Space between circle and text */
}

.circles {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
}

.circles  {
    color: white;
}

/* Title Styling */
.step-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    text-align: start;
}

/* Overall Step Layout */
.step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
 
}

.section-downline-image {
    width: 50%;
    margin-inline: auto;
    
}

.section-downline-image img {
    width: 100%;
    max-width: 500px;
}


/* Section Styles */
section {
    padding: 3rem 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: oklch(87.2% .01 258.338);
    margin-bottom: 4rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitles {
    max-width: 80rem;
    font-size: 1.2rem;
    text-align: center;
    color: oklch(87.2% .01 258.338);
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

/* Featured In */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    opacity: 0.6;
}

.featured-item {
    text-align: center;
    padding: 2rem;
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.featured-item:hover {
    opacity: 1;
}

/* Testimonials */
.testimonials-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: 1.5rem;
}

.testimonial-slide {
    width: 100%;
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.testimonial-cards {
    max-width: 32rem;

}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-info h4 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-content {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-result {
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    color: #10b981;
    font-weight: 500;
    display: inline-block;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-purple);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: scale(1.05);
}

.step-image {
    position: relative;
    margin-bottom: 1.5rem;
    margin-top: 20px;
}

.step-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 1rem;
}

.step-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-button button {
    padding: 15px 20px;
    border-radius: 5px;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    color: white;
    font-weight: 600;
    border: none;
    width: 100%;
    max-width: 400px;
    font-size: 20px;
}

.rolling-image img {
    width: 100%;
    max-width: 1500px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

.rolling-images img {
    width: 100%;
    max-width: 1500px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

 #android-btn, #ios-btn {
      display: none;
      padding: 10px 20px;
      font-size: 16px;
    }

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    -webkit-background-clip: text;
    color: transparent;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-icons {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

/* Styling for the Game Providers Section */
.game-providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    gap: 1rem; /* Spacing between the icons */
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.game-providers-grids {
    display: grid;
    grid-template-columns: repeat(2, 5fr); /* 2 items per row */
    gap: 1rem; /* Spacing between the icons */
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

/* Each Provider Logo */
.provider-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;  /* Optional: Rounded corners for the logos */
}

/* For larger screens, we can show more logos */
@media (min-width: 768px) {
    .game-providers-grid {
        grid-template-columns: repeat(2, 1fr); /* 4 items per row */
    }
}

/* Initially, hide all logos after the 4th one */
.game-providers-grid img:nth-child(n+5) {
    display: none;
}

/* See More Button to toggle visibility */
#see-more-btn {
    margin-top: 1.5rem;
    display: inline-block;
}

/* For when the "See More" button is clicked */
.game-providers-grid.show-more img {
    display: block; /* Show all logos */
}

.feature-iconss {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(45deg, #757575, #BDBDBD); /* Gray gradient */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}


.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Mission */
.mission-card {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.mission-content {
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.stat-number:nth-child(1) {
    color: var(--accent-purple);
}

.stat:nth-child(2) .stat-number {
    color: var(--accent-pink);
}

.stat:nth-child(3) .stat-number {
    color: var(--accent-blue);
}

.stat-label {
    color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
}

.pricing-card {
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.recommended {
    border: 2px solid var(--accent-purple);
}

.recommended-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 300;
}

.period {
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.plan-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.features-list i {
    color: #fff;
    font-size: 1.1rem;
}

.plan-btn {
    width: 100%;
    justify-content: center;
}

/* FAQ */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 300;
}

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin: 1rem 0 1.5rem;
    color: var(--text-muted);
    max-width: 30rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--text-primary);
}

.last-card img {
    width: 100%;
    border-radius: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column button {
    padding: 15px 20px;
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: black;
    width: 200px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Page Specific Styles */
.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin: 0 auto;
}

/* About Page */
.about-content {
    padding: 2rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-purple);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form h2 {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    background: var(--glass-bg);
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    text-align: center;
    padding: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.faq-card {
    padding: 1.5rem;
}

.faq-card h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Blog Page */
.featured-article {
    padding: 2rem 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-content p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-image img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.title {
    margin-top: 50px;
}

.read-time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.newsletter-card {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.newsletter-card h2 {
    margin-bottom: 1rem;
}

.newsletter-card p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    background: var(--glass-bg);
    color: var(--text-primary);
    font-family: inherit;
}

.newsletter-disclaimer {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
 

    .card-sections {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .about-grid,
    .contact-grid,
    .featured-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .mission-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content h2 {
        font-size: 35px;
    }

    .hero-bg {
        background-image: url(./assets/BC\ WALLPAPER\ MOBILE.webp) !important;
    }

 

  .nav-link {
    padding: 10px 0;
    
  }

  .mobile-menu-btn {
    display: block;
    cursor: pointer;
    font-size: 23px;
    margin-bottom: 3px;
  }

  .nav-container {
    padding: 0 1rem;
  }

    .title {
    margin-top: 0;
}

        .section-title {
            margin-top: 0;
        }

    .program-berfungsi {
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 700px;
        margin-inline: auto;
        margin-bottom: 50px;
        margin-top: 50px;
        gap: 20px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .games-section {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    
    section {
        padding: 1rem 0;
    }

    .step-title {
        font-size: 16px;
        max-width: 280px;
    }

    .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
}

.circles {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(90deg, #ff7f00, #ffbc00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
}


    
    .hero {
        padding: 6rem 1rem 3rem;
    }

    .step {
        text-align: start;
        margin: 0;

        max-width: 350px;

        margin-bottom: 20px;
    }

   
    
    .steps-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    

    .section-downline-card {
        display: flex;
        flex-direction: column;
        margin: 0;
        margin-top: 20px;
        width: 100%;
         gap: 20px;
        
        
    }

    .section-downline-cards {
        display: flex;
        flex-direction: column-reverse;
        margin: 0;
        margin-top: 35px;
        width: 100%;
        gap: 20px;
    }

    .section-downline-image {
        width: 90%;
        margin-inline: auto;
    }

    .section-downline-detail {
        width: 90%;
        margin-inline: auto;
    }

    .testimonial-cards {
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 100%;


    }

    .testimonial-cards p {
        font-size: 14px;
    }

    .testimonial-cards span {
        font-size: 12px;
    }

    .glass-card {
        padding: 1rem;
  
    }

    .step {
        width: 400px;
        text-align: center;
    }

    .footer-brand {
        width: 100%;
        max-width: 350px;
    }

    .glass-cardss {
        padding: 1rem;
        height: 100%;
    }

    .section-subtitle {
        margin-bottom: 10px;
        font-size: 16px;
        
    }

    .features-grid {
        gap: 20px;
    }

    .section-subtitles {
    max-width: 80rem;
    font-size: 14px;
    text-align: start;
    color: oklch(87.2% .01 258.338);
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;

    background: var(--glass-bg);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    margin-inline: auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

.section-title {
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 20px !important;
}

.glass-cards {
    width: 90%;
    border-radius: 10px;
}

.section-box {
    justify-content: center;
}

.rolling-image img {
    margin-top: 20px;
    display: none;
}

.rolling-images img {
    margin-top: 20px;
    display: block;
}

.how-it-works {
    padding: 3rem 0;
    background-color: #1e1e2f;
    color: #fff;
}

.sect-title {
    text-align: start;
}

.gaming-app .section-title {
    font-size: 25px;
}

.gaming-app .section-subtitle {
    font-size: 16px;
}

.gaming-app {
    padding: 2rem 0;
}

.neuro-btn {
    border-radius: 5px;
    
}

}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100% !important;
    }
    
    .hero-float {
        width: 16rem !important;
        height: 16rem !important;
    }
    
    .testimonials-dots {
        gap: 0.25rem !important;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #000;
    padding: 1rem;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    z-index: 999;
  }

  .nav-menu.show {
    display: flex !important;
  }

  .mobile-menu-btn {
    display: block;
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: static;
    flex-direction: row;
  }

  .mobile-menu-btn {
    display: none;
  }
}

.nav-link-dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-toggle-icon {
  margin-left: 6px;
  font-size: 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.dropdown-toggle-icon {
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.dropdown-menu {
  position: absolute;
  top: 75%;
  left: 56.5%;
transform: translateX(-50%);

  display: none;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  padding: 0.5rem 0;
  min-width: 160px;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #fff !important;
}

.dropdown-menu.show {
  display: block !important;
}

.dropdown-menu li a:hover {
  background-color: #222;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .dropdown-menu {
    position: relative !important;
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
    padding: 0;
    margin: 0;
    background-color: transparent !important;
    box-shadow: none !important;
  }

  .dropdown-menu li a {
    padding-left: 1.5rem;
    border: none;
  }
}