/*
Theme Name: SkyExchange Theme
Author: Jyoti
Version: 1.0
*/

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}




body{
  background:#e5e5e5;
  font-family:Arial,sans-serif;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1500px;
  margin:auto;
}

/* HEADER */

.top-header{
  background:#000;
  padding:15px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  color:#fff;
  font-size:32px;
  font-weight:700;
}

.main-menu ul{
  display:flex;
  list-style:none;
  gap:30px;
}

.main-menu ul li a{
  color:#fff;
  font-size:15px;
}

.login-btn{
  background:#ffd400;
  color:#000;
  padding:12px 24px;
  border-radius:8px;
  font-weight:700;
}
.header-buttons{
  display:flex;
  align-items:center;
  gap:15px;
}

/* LOGIN BUTTON */

.login-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:14px 30px;

  border-radius:12px;

  background:
  linear-gradient(
    135deg,
    #1bbfff,
    #0f7ed0
  );

  color:#fff;
  font-size:16px;
  font-weight:700;

  text-decoration:none;

  transition:0.4s ease;

  box-shadow:
  0 10px 25px rgba(27,191,255,0.25);
}

.login-btn:hover{
  transform:translateY(-3px);
}

/* REGISTER BUTTON */

.register-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:14px 30px;

  border-radius:12px;

  border:1px solid #1bbfff;

  background:transparent;

  color:#1bbfff;
  font-size:16px;
  font-weight:700;

  text-decoration:none;

  transition:0.4s ease;
}

.register-btn:hover{
  background:#1bbfff;
  color:#fff;

  transform:translateY(-3px);

  box-shadow:
  0 10px 25px rgba(27,191,255,0.25);
}

/* MOBILE */

@media(max-width:991px){

.header-buttons{
  gap:10px;
}

.login-btn,
.register-btn{
  padding:12px 18px;
  font-size:14px;
}

}

/* ====================================
NEW HERO SLIDER
==================================== */

/* =========================
CUSTOM SLIDER
========================= */

.custom-slider{
  position:relative;
  width:100%;
  overflow:hidden;

}

.custom-slider-wrapper{
  display:flex;
  transition:0.5s ease;
}

.custom-slide{
  min-width:100%;
}

.custom-slide img{
  width:100%;
  object-fit:cover;
  display:block;
}

/* ARROWS */

.slider-prev,
.slider-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  color:#fff;
  border:none;
  width:50px;
  height:50px;
  cursor:pointer;
  font-size:28px;
  z-index:10;
}

.slider-prev{
  left:15px;
}

.slider-next{
  right:15px;
}

/* MOBILE */

@media(max-width:768px){

.custom-slide img{
  height:180px;
}

.slider-prev,
.slider-next{
  width:35px;
  height:35px;
  font-size:18px;
}

}
/* ====================================
POPULAR GAMES GRID
==================================== */

/* ====================================
POPULAR GAMES
==================================== */

.games-section {
    background: #000;
    padding: 20px 50px;
}

.games-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}

/* BIG TOP CARDS */

.game-card.big-card{
  grid-column:span 2;
}

/* CARD */

.game-card{
  position:relative;
  overflow:hidden;
  display:block;
  border-radius:2px;
  background:#111;
}

/* IMAGE */

.game-card img{
  width:100%;
  height: 300px;
  object-fit:cover;
  display:block;
  transition:0.3s;
}

.game-card:hover img{
  transform:scale(1.03);
}

/* OVERLAY */

.game-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    transparent 55%
  );
}

/* TITLE */

.game-title{
  position:absolute;
  left:8px;
  bottom:8px;
  color:#fff;
  font-size:12px;
  font-weight:700;
  z-index:5;
}

/* BUTTON */

.play-btn{
  position:absolute;
  right:0;
  bottom:0;
  background:#ffcc00;
  color:#000;
  font-size:9px;
  font-weight:700;
  padding:5px 8px;
  z-index:5;
}

/* MOBILE */

@media(max-width:768px){

.games-grid{
  grid-template-columns:repeat(2,1fr);
}

.game-card.big-card{
  grid-column:span 2;
}

}
/* FOOTER */

.footer{
  background:#000;
  padding:70px 0;
 
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.footer-title{
  color:#fff;
  font-size:20px;
  margin-bottom:20px;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-links a{
  color:#cbd5e1;
}

.copy{
  color:#94a3b8;
  text-align:center;
  margin-top:50px;
}

@media(max-width:991px){

.main-menu{
  display:none;
}

.games-grid{
  grid-template-columns:1fr;
}

.footer-grid{
  grid-template-columns:1fr;
}

.hero-slider{
  width:100%;
}

.hero-slide img{
  height:180px;
}

}

/* ========================================
SKYEXCHANGE SECTION
======================================== */

.skyexchange-section{
    padding: 30px 0;
    background: #000;
    overflow: hidden;
    position: relative;
}

.skyexchange-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
    top: -220px;
    left: -150px;
    z-index: 0;
}

.skyexchange-wrapper{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}


/* ========================================
CONTENT
======================================== */

.skyexchange-content{
    text-align: center;
    margin-bottom: 70px;
}

.skyexchange-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.skyexchange-content h2{
    font-size: 35px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    max-width: 950px;
    margin: auto auto 25px;
}

.skyexchange-content p{
    max-width: 980px;
    margin: auto;
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
}


/* ========================================
BUTTON
======================================== */

.skyexchange-btn-wrap{
    margin-top: 35px;
}

.skyexchange-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.skyexchange-btn:hover{
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 15px 40px rgba(15, 126, 208, 0.35);
}


/* ========================================
FEATURES GRID
======================================== */

.skyexchange-features{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card{
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 0;
}

.feature-card:hover::before{
    opacity: 0.08;
}

.feature-card:hover{
    transform: translateY(-8px);
    border-color: var(--clr-accent-blue);
}

.feature-icon{
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.feature-card h4{
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .skyexchange-section{
        padding: 80px 0;
    }

    .skyexchange-features{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 767px){

    .skyexchange-section{
        padding: 70px 0;
    }

    .skyexchange-content{
        margin-bottom: 50px;
    }

    .skyexchange-content h2{
        font-size: 30px;
    }

    .skyexchange-content p{
        font-size: 16px;
        line-height: 1.8;
    }

    .skyexchange-features{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card{
        padding: 32px 20px;
    }

    .feature-icon{
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .feature-card h4{
        font-size: 18px;
    }

}
/* ========================================
WHAT IS SKYEXCHANGE
======================================== */

.what-is-skyexchange{
    padding: 100px 0;
    background: #000;
    overflow: hidden;
    position: relative;
}

.what-is-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-image img{
    width: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.08);
}

.what-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.what-right-content h2{
    font-size: 35px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.what-right-content p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.what-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.what-feature-card{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.what-feature-card:hover{
    transform: translateY(-5px);
    border-color: var(--clr-accent-blue);
}

.what-feature-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.what-feature-card h4{
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .what-is-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .what-is-skyexchange{
        padding: 70px 0;
    }

    .what-right-content h2{
        font-size: 30px;
    }

    .what-right-content p{
        font-size: 16px;
    }

    .what-features{
        grid-template-columns: 1fr;
    }

}

/* ========================================
WHY TRENDING SECTION
======================================== */

.why-trending-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.why-trending-section::before{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -120px;
    top: -120px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.why-trending-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* ========================================
LEFT CONTENT
======================================== */

.why-trending-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.why-trending-content h2{
    font-size: 35px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.why-trending-content p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
RIGHT CARDS
======================================== */

.why-trending-cards{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.trend-card{
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 30px;
    transition: 0.3s ease;
}

.trend-card:hover{
    transform: translateY(-6px);
    border-color: var(--clr-accent-blue);
}

.trend-card-number{
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.trend-card h4{
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.trend-card p{
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .why-trending-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .why-trending-section{
        padding: 70px 0;
    }

    .why-trending-content h2{
        font-size: 30px;
    }

    .why-trending-content p{
        font-size: 16px;
    }

    .why-trending-cards{
        grid-template-columns: 1fr;
    }

    .trend-card{
        padding: 25px;
    }

}

/* ========================================
CREATE ID SECTION
======================================== */

.create-id-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.create-id-section::before{
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.create-id-wrapper{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* ========================================
CONTENT
======================================== */

.create-id-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.create-id-content h2{
    font-size: 35px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.create-id-content p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}


/* ========================================
STEPS
======================================== */

.create-id-steps{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.create-step-card{
    display: flex;
    gap: 18px;
    padding: 24px;
    background: #111;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.create-step-card:hover{
    transform: translateY(-5px);
    border-color: var(--clr-accent-blue);
}

.step-number{
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.step-content h4{
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* ========================================
IMAGE
======================================== */

.create-id-image img{
    width: 100%;
    border-radius: 30px;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .create-id-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .create-id-section{
        padding: 70px 0;
    }

    .create-id-content h2{
        font-size: 30px;
    }

    .create-id-content p{
        font-size: 16px;
    }

    .create-step-card{
        padding: 20px;
    }

    .step-number{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 18px;
    }

    .step-content h4{
        font-size: 18px;
    }

}

/* ========================================
LOGIN ACCESS SECTION
======================================== */

.login-access-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.login-access-section::before{
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(200px);
    opacity: 0.12;
}

.login-access-wrapper{
    position: relative;
    z-index: 2;
}


/* ========================================
TOP CONTENT
======================================== */

.login-access-top{
    max-width: 850px;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}

.login-access-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.login-access-top h2{
    font-size: 35px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.login-access-top p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
GRID
======================================== */

.login-access-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.login-access-card{
    background: #111;
    border-radius: 24px;
    padding: 35px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-access-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    opacity: 0;
    transition: 0.3s ease;
}

.login-access-card:hover::before,
.login-access-card.active-card::before{
    opacity: 0.08;
}

.login-access-card:hover{
    transform: translateY(-6px);
    border-color: var(--clr-accent-blue);
}

.login-icon{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.login-access-card h4{
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.login-access-card p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .login-access-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width: 767px){

    .login-access-section{
        padding: 70px 0;
    }

    .login-access-top{
        margin-bottom: 40px;
    }

    .login-access-top h2{
        font-size: 30px;
    }

    .login-access-top p{
        font-size: 16px;
    }

    .login-access-grid{
        grid-template-columns: 1fr;
    }

    .login-access-card{
        padding: 28px 22px;
    }

}

/* ========================================
PLATFORM FEATURES SECTION
======================================== */

.platform-features-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.platform-features-section::before{
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.platform-features-wrapper{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* ========================================
CONTENT
======================================== */

.platform-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.platform-features-content h2{
    font-size: 35px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.platform-features-content p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}


/* ========================================
FEATURE LIST
======================================== */

.platform-feature-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.platform-feature-item{
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #111;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.platform-feature-item:hover{
    transform: translateY(-5px);
    border-color: var(--clr-accent-blue);
}

.platform-feature-number{
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.platform-feature-text h4{
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.platform-feature-text p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* ========================================
IMAGE
======================================== */

.platform-features-image img{
    width: 100%;
    border-radius: 30px;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .platform-features-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .platform-features-section{
        padding: 70px 0;
    }

    .platform-features-content h2{
        font-size: 30px;
    }

    .platform-features-content p{
        font-size: 16px;
    }

    .platform-feature-item{
        padding: 20px;
    }

    .platform-feature-number{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 18px;
    }

    .platform-feature-text h4{
        font-size: 18px;
    }

}

/* ========================================
BETTING ID SECTION
======================================== */

.betting-id-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.betting-id-section::before{
    content: "";
    position: absolute;
    left: 50%;
    top: -180px;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(200px);
    opacity: 0.12;
}

.betting-id-wrapper{
    position: relative;
    z-index: 2;
}


/* ========================================
TOP CONTENT
======================================== */

.betting-id-top{
    text-align: center;
    max-width: 850px;
    margin: auto auto 60px;
}

.betting-id-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.betting-id-top h2{
    font-size: 35px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.betting-id-top p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
GRID
======================================== */

.betting-id-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.betting-id-card{
    background: #111;
    border-radius: 24px;
    padding: 35px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    text-align: center;
}

.betting-id-card:hover{
    transform: translateY(-6px);
    border-color: var(--clr-accent-blue);
}

.betting-id-icon{
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

.betting-id-card h4{
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.betting-id-card p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* ========================================
BOTTOM TEXT
======================================== */

.betting-id-bottom{
    max-width: 850px;
    margin: auto;
    text-align: center;
    padding: 30px;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
}

.betting-id-bottom p{
    color: #fff;
    font-size: 18px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .betting-id-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width: 767px){

    .betting-id-section{
        padding: 70px 0;
    }

    .betting-id-top{
        margin-bottom: 40px;
    }

    .betting-id-top h2{
        font-size: 30px;
    }

    .betting-id-top p{
        font-size: 16px;
    }

    .betting-id-grid{
        grid-template-columns: 1fr;
    }

    .betting-id-card{
        padding: 28px 22px;
    }

    .betting-id-bottom{
        padding: 25px 20px;
    }

    .betting-id-bottom p{
        font-size: 16px;
    }

}

/* ========================================
BEGINNERS SECTION
======================================== */

.beginners-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.beginners-section::before{
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.beginners-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* ========================================
CONTENT
======================================== */

.beginners-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.beginners-content h2{
    font-size: 35px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.beginners-content p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}


/* ========================================
LIST
======================================== */

.beginners-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.beginners-item{
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #111;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.beginners-item:hover{
    transform: translateY(-5px);
    border-color: var(--clr-accent-blue);
}

.beginners-icon{
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.beginners-text h4{
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.beginners-text p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* ========================================
IMAGE
======================================== */

.beginners-image img{
    width: 100%;
    border-radius: 30px;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .beginners-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .beginners-section{
        padding: 70px 0;
    }

    .beginners-content h2{
        font-size: 30px;
    }

    .beginners-content p{
        font-size: 16px;
    }

    .beginners-item{
        padding: 20px;
    }

    .beginners-icon{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 18px;
    }

    .beginners-text h4{
        font-size: 18px;
    }

}
/* ========================================
LOGIN ISSUES SECTION
======================================== */

.login-issues-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.login-issues-section::before{
    content: "";
    position: absolute;
    left: -120px;
    top: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.login-issues-wrapper{
    position: relative;
    z-index: 2;
}


/* ========================================
TOP
======================================== */

.login-issues-top{
    max-width: 850px;
    margin: auto auto 60px;
    text-align: center;
}

.login-issues-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.login-issues-top h2{
    color: #fff;
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.login-issues-top p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
GRID
======================================== */

.login-issues-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.login-issue-card{
    background: #111;
    border-radius: 24px;
    padding: 35px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    text-align: center;
}

.login-issue-card:hover{
    transform: translateY(-6px);
    border-color: var(--clr-accent-blue);
}

.login-issue-icon{
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

.login-issue-card h4{
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.login-issue-card p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* ========================================
SOLUTION BOX
======================================== */

.login-solution-box{
    max-width: 900px;
    margin: auto;
    padding: 40px;
    border-radius: 28px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.login-solution-box h3{
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.login-solution-box p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .login-issues-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .login-issues-section{
        padding: 70px 0;
    }

    .login-issues-top{
        margin-bottom: 40px;
    }

    .login-issues-top h2{
        font-size: 30px;
    }

    .login-issues-top p{
        font-size: 16px;
    }

    .login-issue-card{
        padding: 28px 22px;
    }

    .login-solution-box{
        padding: 30px 22px;
    }

    .login-solution-box h3{
        font-size: 24px;
    }

    .login-solution-box p{
        font-size: 16px;
    }

}

/* ========================================
BETTING EXCHANGE 2026 SECTION
======================================== */

.exchange-2026-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.exchange-2026-section::before{
    content: "";
    position: absolute;
    right: -150px;
    top: -150px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.exchange-2026-wrapper{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    position: relative;
    z-index: 2;
}


/* ========================================
LEFT
======================================== */

.exchange-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.exchange-left h2{
    color: #fff;
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.exchange-left p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
RIGHT TIMELINE
======================================== */

.exchange-right{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.exchange-item{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.exchange-line{
    width: 4px;
    min-width: 4px;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
}

.exchange-content{
    flex: 1;
    background: #111;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.exchange-content:hover{
    transform: translateY(-5px);
    border-color: var(--clr-accent-blue);
}

.exchange-content span{
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.exchange-content h4{
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.exchange-content p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* ========================================
BOTTOM TEXT
======================================== */

.exchange-bottom-text{
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    padding: 35px;
    border-radius: 28px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}

.exchange-bottom-text p{
    color: #fff;
    font-size: 18px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .exchange-2026-wrapper{
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media(max-width: 767px){

    .exchange-2026-section{
        padding: 70px 0;
    }

    .exchange-left h2{
        font-size: 30px;
    }

    .exchange-left p{
        font-size: 16px;
    }

    .exchange-content{
        padding: 24px;
    }

    .exchange-content h4{
        font-size: 20px;
    }

    .exchange-bottom-text{
        padding: 28px 20px;
        margin-top: 40px;
    }

    .exchange-bottom-text p{
        font-size: 16px;
    }

}

/* ========================================
LOGIN 2026 SECTION
======================================== */

.login-2026-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.login-2026-section::before{
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.login-2026-wrapper{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* ========================================
IMAGE
======================================== */

.login-2026-image img{
    width: 100%;
    border-radius: 30px;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
}


/* ========================================
CONTENT
======================================== */

.login-2026-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.login-2026-content h2{
    color: #fff;
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.login-2026-content p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
}


/* ========================================
FEATURES
======================================== */

.login-2026-features{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.login-2026-item{
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.login-2026-item:hover{
    transform: translateY(-5px);
    border-color: var(--clr-accent-blue);
}

.login-2026-number{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.login-2026-text h4{
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.login-2026-text p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* ========================================
BOTTOM
======================================== */

.login-2026-bottom{
    margin-top: 35px;
    padding: 30px;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
}

.login-2026-bottom p{
    color: #fff;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .login-2026-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .login-2026-section{
        padding: 70px 0;
    }

    .login-2026-content h2{
        font-size: 30px;
    }

    .login-2026-content p{
        font-size: 16px;
    }

    .login-2026-item{
        padding: 20px;
    }

    .login-2026-number{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 18px;
    }

    .login-2026-text h4{
        font-size: 18px;
    }

    .login-2026-bottom{
        padding: 24px 20px;
    }

}

/* ========================================
ID SAFETY SECTION
======================================== */

.id-safety-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.id-safety-section::before{
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.id-safety-wrapper{
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 2;
}


/* ========================================
LEFT CONTENT
======================================== */

.id-safety-content{
   width: 50%;
    height: 600px;
    overflow-y: auto;
    scrollbar-width: none;
}

.id-safety-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.id-safety-content h2{
    color: #fff;
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.id-safety-content p{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
}


/* ========================================
LIST
======================================== */

.id-safety-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.id-safety-item{
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.id-safety-item:hover{
    transform: translateY(-5px);
    border-color: var(--clr-accent-blue);
}

.safety-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.safety-text{
    width: 100%;
}

.safety-text h4{
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.safety-text p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* ========================================
BOTTOM
======================================== */

.id-safety-bottom{
    margin-top: 35px;
    padding: 30px;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
}

.id-safety-bottom p{
    color: #fff;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
RIGHT IMAGE FIXED
======================================== */
.id-safety-image {
    width: 40%;
    position: sticky;
    top: 30px;
}

.id-safety-image img{
    width: 100%;
    border-radius: 30px;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .id-safety-wrapper{
        flex-direction: column;
    }

    .id-safety-content,
    .id-safety-image{
        width: 100%;
    }

    .id-safety-image{
        position: relative;
        top: 0;
    }

}

@media(max-width: 767px){

    .id-safety-section{
        padding: 70px 0;
    }

    .id-safety-content h2{
        font-size: 30px;
    }

    .id-safety-content p{
        font-size: 16px;
    }

    .id-safety-item{
        padding: 20px;
        gap: 15px;
    }

    .safety-icon{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 16px;
    }

    .safety-text h4{
        font-size: 18px;
    }

    .safety-text p{
        font-size: 14px;
    }

    .id-safety-bottom{
        padding: 24px 20px;
    }

    .id-safety-bottom p{
        font-size: 16px;
    }

}
/* ========================================
WHY CHOOSE SKYEXCHANGE SECTION
======================================== */

.why-choose-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before{
    content: "";
    position: absolute;
    left: -120px;
    top: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.why-choose-wrapper{
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}


/* ========================================
LEFT CONTENT SCROLL
======================================== */

.why-choose-content{
    width: 65%;
    height: 100vh;
    overflow-y: auto;
    padding-right: 15px;
}


/* CUSTOM SCROLLBAR */

.why-choose-content::-webkit-scrollbar{
    width: 6px;
}

.why-choose-content::-webkit-scrollbar-track{
    background: #111;
    border-radius: 20px;
}

.why-choose-content::-webkit-scrollbar-thumb{
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    border-radius: 20px;
}


/* FIREFOX */

.why-choose-content{
    scrollbar-width: thin;
    scrollbar-color: var(--clr-accent-blue) #111;
}


.why-choose-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.why-choose-content h2{
    color: #fff;
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.why-choose-main-desc{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}


/* ========================================
CARDS
======================================== */

.why-choose-blocks{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-choose-card{
    display: flex;
    gap: 22px;
    padding: 28px;
    border-radius: 28px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.why-choose-card:hover{
    transform: translateY(-5px);
    border-color: var(--clr-accent-blue);
}

.why-choose-number{
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.why-choose-text{
    width: 100%;
}

.why-choose-text h4{
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.why-choose-text p{
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
BOTTOM BOX
======================================== */

.why-choose-bottom{
    margin-top: 35px;
    padding: 32px;
    border-radius: 28px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
}

.why-choose-bottom p{
    color: #fff;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}


/* ========================================
RIGHT IMAGE FIXED
======================================== */

.why-choose-image{
    width: 35%;
    position: sticky;
    top: 20px;
}

.why-choose-image img{
    width: 100%;
    display: block;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .why-choose-wrapper{
        flex-direction: column;
    }

    .why-choose-content,
    .why-choose-image{
        width: 100%;
    }

    .why-choose-content{
        height: auto;
        overflow: visible;
        padding-right: 0;
    }

    .why-choose-image{
        position: relative;
        top: 0;
    }

}

@media(max-width: 767px){

    .why-choose-section{
        padding: 70px 0;
    }

    .why-choose-content h2{
        font-size: 30px;
    }

    .why-choose-main-desc{
        font-size: 16px;
    }

    .why-choose-card{
        padding: 22px;
        gap: 16px;
    }

    .why-choose-number{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 16px;
    }

    .why-choose-text h4{
        font-size: 18px;
    }

    .why-choose-text p{
        font-size: 14px;
    }

    .why-choose-bottom{
        padding: 24px 20px;
    }

    .why-choose-bottom p{
        font-size: 16px;
    }

}

/* ========================================
FINAL CTA SECTION
======================================== */

.final-cta-section{
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before{
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    filter: blur(180px);
    opacity: 0.12;
}

.final-cta-wrapper{
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* ========================================
TOP CONTENT
======================================== */

.final-cta-badge{
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.final-cta-content h2{
    color: #fff;
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-desc{
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}


/* ========================================
FEATURES
======================================== */

.final-cta-features{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.final-feature-item{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.final-feature-item:hover{
    transform: translateY(-5px);
    border-color: var(--clr-accent-blue);
}

.final-feature-item span{
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.final-feature-item p{
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}


/* ========================================
FINAL THOUGHTS
======================================== */

.final-thoughts-box{
    padding: 40px;
    border-radius: 30px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

.final-thoughts-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
    opacity: 0.05;
}

.final-thoughts-box h3{
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.final-thoughts-box p{
    color: #d1d5db;
    font-size: 16px;
    line-height: 2;
    margin: 0;
    position: relative;
    z-index: 2;
}


/* ========================================
RESPONSIVE
======================================== */

@media(max-width: 991px){

    .final-cta-features{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .final-cta-section{
        padding: 70px 0;
    }

    .final-cta-content h2{
        font-size: 30px;
    }

    .final-cta-desc{
        font-size: 16px;
    }

    .final-feature-item{
        padding: 20px;
    }

    .final-feature-item p{
        font-size: 15px;
    }

    .final-thoughts-box{
        padding: 28px 22px;
    }

    .final-thoughts-box h3{
        font-size: 24px;
    }

    .final-thoughts-box p{
        font-size: 15px;
        line-height: 1.9;
    }

}
.final-cta-image {
    display: none;
}
/* ====================================
FAQ SECTION
==================================== */

.faq-section{
  background:#031321;
  padding:30px 20px;
  position:relative;
  overflow:hidden;
  width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-section::before{
  content:'';
  position:absolute;
  width:700px;
  height:700px;

  background:
  radial-gradient(
    rgba(27,191,255,0.08),
    transparent 70%
  );

  top:-250px;
  right:-250px;

  animation:bgMove 8s linear infinite;
}

.faq-wrapper{
  max-width:1500px;
  margin:auto;
  position:relative;
  z-index:2;
}

/* ====================================
TOP
==================================== */

.faq-top{
  margin-bottom:60px;
}

.faq-top h2{
  color:#fff;
  font-size:38px;
  line-height:1.2;
  margin-bottom:25px;
  font-weight:800;
}

.faq-top p{
  color:#d5dee6;
  font-size:18px;
  line-height:1.9;
  max-width:1200px;
}

/* ====================================
FAQ MAIN
==================================== */

.faq-main{
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* ITEM */

.faq-item{
  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border:1px solid rgba(27,191,255,0.15);

  border-radius:22px;

  overflow:hidden;

  transition:0.4s ease;

  position:relative;
}

.faq-item:hover{
  border-color:#1bbfff;

  box-shadow:
  0 15px 35px rgba(27,191,255,0.15);
}

/* GLOW */

.faq-item::before{
  content:'';
  position:absolute;

  width:180px;
  height:180px;

  background:
  radial-gradient(
    rgba(27,191,255,0.10),
    transparent 70%
  );

  right:-100px;
  top:-100px;

  border-radius:50%;
}

/* ====================================
QUESTION
==================================== */

.faq-question{
  padding:30px 35px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  cursor:pointer;

  position:relative;
  z-index:2;
}

.faq-question h3{
  color:#fff;
  font-size:28px;
  line-height:1.4;
  font-weight:700;
}

.faq-question span{
  width:45px;
  height:45px;

  border-radius:50%;

  background:
  linear-gradient(
    135deg,
    #1bbfff,
    #0f7ed0
  );

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:28px;

  transition:0.4s ease;

  flex-shrink:0;
}

/* ACTIVE */

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

/* ====================================
ANSWER
==================================== */

.faq-answer{
  max-height:0;
  overflow:hidden;

  transition:0.5s ease;

  position:relative;
  z-index:2;
}

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

.faq-answer p{
  font-size:18px;

  padding:
  0 24px 24px;
}

}

/* ==========================================================================
   SKYEXCHANGE PREMIUM EXTENDED DESIGN SYSTEM & NEW TEMPLATE STYLING
   ========================================================================== */

/* GLOBAL TYPOGRAPHY & OVERRIDES */
body {
  background: #031321 !important;
  color: #ffffff;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

/* CUSTOM LOGO */
.site-logo-img {
  max-height: 48px;
  width: auto;
  display: block;
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background: #000;
  color: #ffd400;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(27, 191, 255, 0.3);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVE MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(3, 19, 33, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 100px 30px;
    transition: all 0.4s ease;
    border-left: 1px solid rgba(27, 191, 255, 0.2);
  }
  .main-menu.active {
    right: 0;
  }
  .main-menu ul {
    flex-direction: column;
    gap: 24px;
  }
  .main-menu ul li a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #1bbfff;
  }
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #1bbfff;
  }
}

/* PAGE HERO BANNER */
.page-hero-banner {
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px;
  position: relative;
  text-align: center;
  border-bottom: 2px solid #ffd400;
}

.hero-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(27, 191, 255, 0.15);
  border: 1px solid #1bbfff;
  color: #1bbfff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.page-hero-banner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #1bbfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: #c8d4df;
  line-height: 1.6;
  margin-bottom: 35px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffd400, #ffb700);
  color: #000;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(255, 212, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 212, 0, 0.5);
  background: #fff;
  color: #000;
}

/* CUSTOM BREADCRUMB */
.custom-breadcrumb {
  background: #000b14;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-breadcrumb ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 12px;
  font-size: 13px;
  color: #c8d4df;
  margin: 0;
  padding: 0;
}

.custom-breadcrumb ul li a {
  color: #1bbfff;
  transition: color 0.3s ease;
}

.custom-breadcrumb ul li a:hover {
  color: #fff;
}

.custom-breadcrumb ul li:not(:last-child)::after {
  content: "➔";
  margin-left: 12px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.2);
}

.custom-breadcrumb ul li.active {
  color: #ffd400;
  font-weight: 600;
}

/* THEME FAQ ACCORDION */
.theme-faq-section {
  background: #031321;
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-small-title {
  color: #1bbfff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.faq-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  color: #fff;
  font-weight: 800;
  margin: 10px 0 20px;
}

.header-line {
  width: 80px;
  height: 4px;
  background: #ffd400;
  margin: 0 auto;
  border-radius: 2px;
}

.faq-accordion-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  border-color: rgba(27, 191, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.faq-accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-trigger-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(27, 191, 255, 0.1);
  color: #1bbfff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq-accordion-item.is-open {
  border-color: #1bbfff;
  background: rgba(27, 191, 255, 0.05);
}

.faq-accordion-content {
  padding: 0 24px 24px;
  color: #c8d4df;
  font-size: 15px;
  line-height: 1.7;
}

/* GLOBAL CTA SECTION */
.global-cta-section {
  background: #000;
  padding: 60px 0;
}

.cta-inner-card {
  background: linear-gradient(135deg, #c0392b 0%, #781c12 50%, #031321 100%);
  border: 2px solid #ffd400;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-content-side {
  max-width: 700px;
}

.cta-tag {
  color: #ffd400;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.cta-content-side h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-content-side p {
  color: #e5edf5;
  font-size: 16px;
  line-height: 1.6;
}

.cta-btn-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.cta-whatsapp-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  padding: 16px 30px;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.cta-whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.cta-subtext {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* PAYMENT METODS FOOTER BAND */
.footer-payment-methods {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.payment-title {
  display: block;
  font-size: 14px;
  color: #c8d4df;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-badges-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.footer-license-box {
  display: flex;
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
}

.license-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 212, 0, 0.1);
  border: 1px solid #ffd400;
  padding: 15px 25px;
  border-radius: 8px;
  min-width: 220px;
}

.badge-icon {
  font-size: 28px;
}

.badge-text strong {
  display: block;
  color: #ffd400;
  font-size: 14px;
}

.badge-text span {
  font-size: 11px;
  color: #fff;
}

.license-desc p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* RESPONSIBLE GAMING PAGE */
.safe-gaming-intro {
  padding: 90px 0;
  background: #031321;
}

.gaming-intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.gaming-intro-img img {
  border-radius: 18px;
  border: 1px solid rgba(27, 191, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.gaming-intro-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffd400;
}

.gaming-intro-content p {
  color: #c8d4df;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.limits-grid-section {
  background: #000b14;
  padding: 90px 0;
}

.limits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.limit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.limit-card:hover {
  transform: translateY(-8px);
  border-color: #1bbfff;
  box-shadow: 0 15px 35px rgba(27, 191, 255, 0.15);
}

.limit-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.limit-card h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.limit-card p {
  color: #c8d4df;
  font-size: 14px;
  line-height: 1.6;
}

.support-resources-section {
  padding: 90px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.support-res-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.support-res-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(27, 191, 255, 0.25);
}

.support-res-card h3 {
  font-size: 20px;
  color: #031321;
  font-weight: 800;
  margin-bottom: 12px;
}

.support-res-card p {
  color: #4f5d69;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.support-res-card a {
  display: inline-block;
  background: #031321;
  color: #ffd400;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
}

.support-res-card a:hover {
  background: #1bbfff;
  color: #000;
}

/* ABOUT US TIMELINE & STATS */
.about-stats-bar {
  background: linear-gradient(135deg, #000 0%, #031321 100%);
  border-top: 1px solid rgba(27, 191, 255, 0.2);
  border-bottom: 1px solid rgba(27, 191, 255, 0.2);
  padding: 50px 0;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #ffd400;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #c8d4df;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-vision-section {
  padding: 90px 0;
  background: #031321;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.vision-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 45px;
}

.vision-card h3 {
  font-size: 26px;
  color: #1bbfff;
  font-weight: 800;
  margin-bottom: 15px;
}

.vision-card p {
  color: #c8d4df;
  font-size: 15px;
  line-height: 1.7;
}

.about-timeline-section {
  background: #000b14;
  padding: 90px 0;
}

.about-timeline {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(27, 191, 255, 0.2);
}

.timeline-row {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 30px 40px 30px 0;
  position: relative;
}

.timeline-row:nth-child(even) {
  margin-left: 50%;
  justify-content: flex-start;
  padding: 30px 0 30px 40px;
}

.timeline-row::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #ffd400;
  border: 4px solid #031321;
  border-radius: 50%;
  z-index: 10;
}

.timeline-row:nth-child(even)::after {
  left: -10px;
  right: auto;
}

.timeline-box-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 30px;
  width: 100%;
}

.timeline-year {
  display: inline-block;
  color: #1bbfff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.timeline-box-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-box-card p {
  color: #c8d4df;
  font-size: 14px;
  line-height: 1.6;
}

/* CUSTOMER CARE & SUPPORT GRID */
.support-methods-section {
  padding: 90px 0;
  background: #031321;
}

.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.support-channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.support-channel-card:hover {
  transform: translateY(-8px);
  border-color: #ffd400;
  box-shadow: 0 15px 35px rgba(255, 212, 0, 0.1);
}

.channel-num {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  font-weight: 800;
  color: #ffd400;
  opacity: 0.2;
}

.support-channel-card h3 {
  font-size: 22px;
  color: #ffd400;
  font-weight: 700;
  margin-bottom: 15px;
}

.support-channel-card p {
  color: #c8d4df;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.channel-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1bbfff;
  font-weight: 700;
  font-size: 14px;
}

.channel-action-btn:hover {
  color: #fff;
}

/* TERMS & PRIVACY LAYOUT (Sidebar sticky) */
.legal-page-section {
  padding: 90px 0;
  background: #031321;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
}

.legal-sidebar-sticky {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.toc-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 30px;
}

.toc-card h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}

.toc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toc-card ul li a {
  color: #c8d4df;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
}

.toc-card ul li a:hover {
  color: #1bbfff;
}

.legal-content-rich {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 50px;
  border-radius: 20px;
}

.legal-content-rich h2 {
  font-size: 28px;
  color: #ffd400;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

.legal-content-rich h2:first-of-type {
  margin-top: 0;
}

.legal-content-rich p {
  color: #c8d4df;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content-rich ul {
  color: #c8d4df;
  font-size: 15px;
  line-height: 1.8;
  margin-left: 20px;
  margin-bottom: 20px;
}

/* BLOG LAYOUT & ARCHIVE CARD GRID */
.blog-archive-section {
  padding: 90px 0;
  background: #031321;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-post-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  border-color: #1bbfff;
  box-shadow: 0 15px 35px rgba(27, 191, 255, 0.15);
}

.blog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1bbfff;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  display: block;
}

.blog-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.blog-card-content h3 a {
  color: #fff;
}

.blog-card-content h3 a:hover {
  color: #1bbfff;
}

.blog-card-content p {
  color: #c8d4df;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-btn {
  display: inline-block;
  color: #ffd400;
  font-weight: 700;
  font-size: 13px;
}

.blog-card-btn:hover {
  color: #fff;
}

/* PAGINATION */
.theme-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.theme-pagination .page-numbers {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
}

.theme-pagination .page-numbers.current {
  background: #1bbfff;
  color: #000;
  border-color: #1bbfff;
}

.theme-pagination .page-numbers:hover:not(.current) {
  background: #ffd400;
  color: #000;
  border-color: #ffd400;
}

/* SINGLE BLOG & SIDEBAR */
.single-blog-section {
  padding: 100px 0;
  background: var(--clr-bg-dark);
}

.single-blog-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 50px;
}

.single-post-main {
  background: var(--clr-bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(27, 191, 255, 0.08);
  padding: 50px;
  border-radius: 20px;
}

.single-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--clr-text-muted);
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 20px;
}

.single-meta-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-meta-bar span a {
  color: var(--clr-accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-meta-bar span a:hover {
  color: var(--clr-accent-gold);
}

/* Rich Blog Article Formatting */
.single-post-content p {
  color: var(--clr-text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 25px;
}

.single-post-content strong {
  color: #fff;
  font-weight: 800;
}

.single-post-content h2, 
.single-post-content h3 {
  font-family: var(--font-display);
  color: var(--clr-accent-gold);
  font-size: 26px;
  font-weight: 800;
  margin-top: 45px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 16px;
  border-left: 4px solid var(--clr-accent-blue);
  letter-spacing: -0.01em;
}

.single-post-content h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
}

.single-post-content ul, 
.single-post-content ol {
  margin-left: 20px;
  margin-bottom: 30px;
  color: var(--clr-text-muted);
}

.single-post-content li {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.single-post-content ul li {
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.single-post-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clr-accent-blue);
  font-weight: 900;
}

.single-post-content blockquote {
  background: rgba(27, 191, 255, 0.04);
  border-left: 4px solid var(--clr-accent-blue);
  padding: 25px 30px;
  border-radius: 0 12px 12px 0;
  margin: 35px 0;
}

.single-post-content blockquote p {
  margin: 0;
  font-style: italic;
  color: #fff;
  font-size: 17px;
}

/* Widgets Styling */
.blog-widget-card {
  background: var(--clr-bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(27, 191, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.blog-widget-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--clr-accent-gold);
  font-weight: 800;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(27, 191, 255, 0.15);
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.widget-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widget-post-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.widget-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget-post-info h4 {
  font-family: var(--font-display);
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 5px;
}

.widget-post-info h4 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.widget-post-info h4 a:hover {
  color: var(--clr-accent-blue);
}

.widget-post-info span {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
}

/* Category Filter Pills on Blog page */
.blog-pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--clr-text-muted);
  font-family: var(--font-display);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.blog-pill:hover {
  background: rgba(27, 191, 255, 0.1) !important;
  border-color: var(--clr-accent-blue) !important;
  color: #fff !important;
}

.blog-pill.active {
  background: var(--clr-accent-blue) !important;
  border-color: var(--clr-accent-blue) !important;
  color: #000 !important;
  box-shadow: var(--glow-shadow);
}



/* CONTACT & SUPPORT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 90px 0;
  background: #031321;
}

.contact-info-panel h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffd400;
  margin-bottom: 20px;
}

.contact-info-panel p {
  color: #c8d4df;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(27, 191, 255, 0.1);
  color: #1bbfff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.contact-item-content p {
  margin: 0;
  font-size: 14px;
  color: #c8d4df;
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 45px;
}

.contact-form-panel h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.form-group-theme {
  margin-bottom: 20px;
}

.form-group-theme label {
  display: block;
  font-size: 13px;
  color: #c8d4df;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input-theme {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 20px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input-theme:focus {
  border-color: #1bbfff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.form-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffd400, #ffb700);
  color: #000;
  font-weight: 800;
  padding: 16px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 212, 0, 0.3);
}

/* MOBILE RESPONSIVE TWEAKS */
@media (max-width: 991px) {
  .gaming-intro-wrapper,
  .support-channels-grid,
  .legal-grid,
  .blog-grid,
  .single-blog-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .legal-sidebar-sticky {
    position: static;
  }
  .about-timeline::before {
    left: 20px;
  }
  .timeline-row {
    width: 100% !important;
    padding: 20px 0 20px 40px !important;
    margin-left: 0 !important;
  }
  .timeline-row::after {
    left: 10px !important;
    right: auto !important;
  }
  .cta-inner-card {
    flex-direction: column;
    text-align: center;
    padding: 35px;
  }
  .page-hero-banner h1 {
    font-size: 38px;
  }
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SKYEXCHANGE PREMIUM AAA STYLE ADDITIONS & GLOBAL ENHANCEMENTS
   ========================================================================== */

/* 1. Typography & Global Variables */
:root {
  --clr-bg-dark: #000810;
  --clr-bg-card: rgba(3, 19, 33, 0.65);
  --clr-accent-gold: #ffd400;
  --clr-accent-blue: #1bbfff;
  --clr-accent-red: #c0392b;
  --clr-text-light: #ffffff;
  --clr-text-muted: #c8d4df;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-shadow: 0 0 20px rgba(27, 191, 255, 0.2);
  --glow-shadow-gold: 0 0 20px rgba(255, 212, 0, 0.2);
}

/* Ensure global headers are Outfit */
h1, h2, h3, h4, h5, h6, .footer-title, .logo span, .hero-badge, .timeline-year, .stat-number {
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em;
}

body {
  font-family: var(--font-body) !important;
  background-color: var(--clr-bg-dark) !important;
  color: var(--clr-text-light) !important;
  overflow-x: hidden;
  position: relative;
}

/* 2. SVG Noise Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100vw; 
  height: 100vh;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 9999;
}

/* 3. Custom Cursor Follower */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(27, 191, 255, 0.8) 0%, rgba(27, 191, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate3d(-10px, -10px, 0);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  box-shadow: 0 0 30px rgba(27, 191, 255, 0.4);
}

.cursor-glow.cursor-hover {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.6) 0%, rgba(255, 212, 0, 0) 70%);
  box-shadow: 0 0 40px rgba(255, 212, 0, 0.5);
  mix-blend-mode: screen;
}

/* 4. Full-screen Page Loader */
#theme-loader {
  position: fixed;
  inset: 0;
  background: #000810;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
  opacity: 1;
  visibility: visible;
}

#theme-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px dashed rgba(27, 191, 255, 0.2);
  border-top-color: var(--clr-accent-gold);
  border-radius: 50%;
  animation: spinLoader 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  margin-bottom: 20px;
  box-shadow: var(--glow-shadow-gold);
}

.loader-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #fff;
  background: linear-gradient(135deg, #ffffff 0%, #1bbfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseLoader 2s ease-in-out infinite;
}

@keyframes spinLoader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseLoader {
  0%, 100% { opacity: 0.6; transform: scale(0.98); filter: blur(0.5px); }
  50% { opacity: 1; transform: scale(1.02); filter: blur(0px); }
}

/* 5. Reading Progress Bar */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent-gold), var(--clr-accent-blue));
  z-index: 99998;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 1px 10px rgba(27, 191, 255, 0.5);
}

/* 6. Mobile Sticky Bottom Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: rgba(0, 11, 20, 0.9);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(27, 191, 255, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  gap: 12px;
}

@media (min-width: 992px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  gap: 6px;
  transition: all 0.3s ease;
}

.mobile-cta-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.mobile-cta-login {
  background: linear-gradient(135deg, var(--clr-accent-blue), #0f7ed0);
  color: #fff;
  box-shadow: 0 4px 15px rgba(27, 191, 255, 0.2);
}

.mobile-cta-btn:active {
  transform: scale(0.96);
}

/* 7. Card Spotlight Glows & Glassmorphic styling */
.interactive-card,
.game-card,
.why-box,
.limit-card,
.support-channel-card,
.support-res-card,
.vision-card,
.timeline-box-card,
.blog-post-card,
.cta-inner-card,
.toc-card,
.about-feature {
  position: relative;
  background: var(--clr-bg-card) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(27, 191, 255, 0.08) !important;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Spotlight radial gradient overlay using variables --x and --y */
.interactive-card::before,
.game-card::before,
.why-box::before,
.limit-card::before,
.support-channel-card::before,
.support-res-card::before,
.vision-card::before,
.timeline-box-card::before,
.blog-post-card::before,
.cta-inner-card::before,
.toc-card::before,
.about-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(350px circle at var(--x, 50%) var(--y, 50%), rgba(27, 191, 255, 0.075), transparent 80%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.interactive-card:hover::before,
.game-card:hover::before,
.why-box:hover::before,
.limit-card:hover::before,
.support-channel-card:hover::before,
.support-res-card:hover::before,
.vision-card:hover::before,
.timeline-box-card:hover::before,
.blog-post-card:hover::before,
.cta-inner-card:hover::before,
.toc-card:hover::before,
.about-feature:hover::before {
  opacity: 1;
}

.interactive-card:hover,
.why-box:hover,
.limit-card:hover,
.support-channel-card:hover,
.support-res-card:hover,
.vision-card:hover,
.timeline-box-card:hover,
.blog-post-card:hover,
.about-feature:hover {
  border-color: rgba(27, 191, 255, 0.25) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(27, 191, 255, 0.05);
}

/* 8. Spacing & CTA Uniformity Across Homepage & Inner Pages */
section {
  padding: 30px 0 !important;
}

@media (max-width: 991px) {
  section {
    padding: 60px 0 !important;
  }
}

/* Specific Section Adjustments to keep layout intact */
.custom-slider {
  padding: 0 !important;
}

.games-section {
  padding: 40px 50px !important;
}

@media (max-width: 991px) {
  .games-section {
    padding: 30px 15px !important;
  }
}

/* Buttons consistency */
.login-btn,
.register-btn,
.about-btn,
.form-submit-btn,
.hero-btn-primary,
.blog-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Text gradients for Display Headings */
.page-hero-banner h1,
.faq-section-header h2,
.gaming-intro-content h2,
.about-sky-content h2,
.why-top-content h2,
.how-top h2,
.features-top h2,
.history-top h2,
.trust-top h2,
.guide-top h2 {
  background: linear-gradient(135deg, #ffffff 0%, #1bbfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Spacing and container grid alignment */
.gaming-intro-wrapper,
.limits-grid,
.support-channels-grid,
.contact-grid,
.vision-grid {
  display: grid;
  gap: 40px;
}

@media (max-width: 991px) {
  .gaming-intro-wrapper,
  .limits-grid,
  .support-channels-grid,
  .contact-grid,
  .vision-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
}











/* Dynamic Flexible Layout Sections */
.onboarding-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.onboarding-section.bg-dark {
  background-color: #00050a;
}

.onboarding-section.bg-gradient {
  background: linear-gradient(135deg, #020b12 0%, #0d0105 45%, #000000 100%);
}

/* Glassmorphic Panel Layout */
.glass-panel-wrapper {
  background: rgba(0, 11, 20, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Alternating Row Structure */
.onboarding-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.onboarding-col-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.onboarding-col-media {
  flex: 1;
  position: relative;
  perspective: 1000px; /* Enable 3D tilt effects */
}

/* Alignments */
.section-align-right {
  flex-direction: row-reverse;
}

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

.section-align-center .onboarding-col-content,
.section-align-center .onboarding-col-media {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  flex: none;
}

.section-align-center .onboarding-col-media {
  margin-top: 40px;
}

/* Responsive Stacking: Image on Top, Content on Bottom */
@media (max-width: 991px) {
  .onboarding-section {
    padding: 70px 0;
  }
  .onboarding-row {
    flex-direction: column-reverse !important;
    gap: 40px;
  }
  .glass-panel-wrapper {
    padding: 35px 20px;
    border-radius: 18px;
  }
  .onboarding-col-content, .onboarding-col-media {
    flex: none;
    width: 100%;
  }
}

/* Glowing Border Mask System */
.glow-border {
  position: relative;
  z-index: 1;
}

.glow-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(27, 191, 255, 0.3), rgba(255, 212, 0, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.4s ease, background 0.4s ease;
}

.glow-border:hover::after {
  opacity: 1;
  background: linear-gradient(135deg, #1bbfff 0%, #c0392b 50%, #ffd400 100%);
}

/* Floating animation keyframes */
@keyframes floatAnimation {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.anim-float {
  animation: floatAnimation 6s ease-in-out infinite;
}

/* Image Card Styling */
.premium-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.premium-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.premium-image-card:hover img {
  transform: scale(1.03);
}

.premium-image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Glow Card Overlay */
.card-shine-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(27, 191, 255, 0.12), transparent 40%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-image-card:hover .card-shine-effect {
  opacity: 1;
}

/* Checklist / Bullet Repeaters with Dynamic Checkmarks */
.premium-checklist {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: #c8d4df;
  line-height: 1.6;
  text-align: left;
}

.premium-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: rgba(27, 191, 255, 0.15);
  border: 1px solid #1bbfff;
  color: #1bbfff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alternating border highlight colors on checklist markers */
.onboarding-row:nth-child(even) .premium-checklist li::before {
  border-color: #ffd400;
  color: #ffd400;
  background: rgba(255, 212, 0, 0.15);
}

/* Scroll reveal initial states */


/* Custom FAQ Accordion premium style overrides */
.faq-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 11, 20, 0.2);
}

.faq-accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.faq-accordion-header:hover {
  background: rgba(27, 191, 255, 0.05);
}

.faq-accordion-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.faq-accordion-icon {
  font-size: 18px;
  color: #1bbfff;
  transition: transform 0.3s ease;
}

/*.faq-accordion-content {*/
/*  max-height: 0;*/
/*  overflow: hidden;*/
/*  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;*/
/*  padding: 0 25px;*/
/*}*/

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

.faq-accordion-item.active .faq-accordion-header {
  background: rgba(27, 191, 255, 0.08);
  border-bottom: 1px solid rgba(27, 191, 255, 0.1);
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 500px;
  padding: 20px 25px;
}

.faq-accordion-content p {
  color: #c8d4df;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}








/*new css*/


/* ==========================================================================
   GLOBAL HERO SLIDER SYSTEM - PREMIUM DESIGN & MOTION STYLES
   ========================================================================== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  border-bottom: 2px solid #ffd400;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Background Image Handling */
.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}

/* Dark Overlay Gradients */
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Content Layout Alignments */
.hero-slide-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  width: 100%;
  padding: 120px 20px 100px;
  transition: all 0.8s ease;
}

.slide-align-left .hero-slide-content {
  text-align: left;
  margin-right: auto;
}

.slide-align-center .hero-slide-content {
  text-align: center;
  margin: 0 auto;
}

.slide-align-right .hero-slide-content {
  text-align: right;
  margin-left: auto;
}

/* Staggered Content Reveal Animations */
.hero-slide .reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}

/* Delays for children inside slide content */
.hero-slide .reveal-item:nth-child(1) { transition-delay: 0.2s; }
.hero-slide .reveal-item:nth-child(2) { transition-delay: 0.4s; }
.hero-slide .reveal-item:nth-child(3) { transition-delay: 0.6s; }
.hero-slide .reveal-item:nth-child(4) { transition-delay: 0.8s; }

.hero-slide.active .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

/* Ken Burns background zoom animation */
.anim-style-zoom .hero-slide-bg {
  transform: scale(1);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active.anim-style-zoom .hero-slide-bg {
  transform: scale(1.08);
}

/* Slide Up transition for image */
.anim-style-slide .hero-slide-bg {
  transform: translateY(30px);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active.anim-style-slide .hero-slide-bg {
  transform: translateY(0);
}

/* Staggered visual entrance overlay */
.anim-style-stagger .hero-slide-overlay {
  opacity: 0.5;
  transition: opacity 1.5s ease;
}

.hero-slide.active.anim-style-stagger .hero-slide-overlay {
  opacity: 1;
}

/* Navigation Controls (Arrows & Dots) */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(3, 19, 33, 0.6);
  border: 1px solid rgba(27, 191, 255, 0.3);
  color: #1bbfff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: #1bbfff;
  color: #fff;
  border-color: #1bbfff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(27, 191, 255, 0.5);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(27, 191, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: rgba(27, 191, 255, 0.7);
  transform: scale(1.2);
}

.slider-dot.active {
  background: #ffd400;
  border-color: #ffd400;
  width: 32px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 212, 0, 0.6);
}

/* Height Size Overrides */
.hero-slider-section.hero-height-small .hero-slide-content {
  padding: 80px 20px;
}

.hero-slider-section.hero-height-large .hero-slide-content {
  padding: 160px 20px 140px;
}

.hero-slider-section.hero-height-full {
  height: 100vh;
}

.hero-slider-section.hero-height-full .hero-slider-wrapper,
.hero-slider-section.hero-height-full .hero-slide {
  height: 100vh;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .hero-slide-content h1 {
    font-size: 34px !important;
  }
  .hero-slide-content {
    padding: 100px 15px 80px;
  }
}

/* ==========================================================================
   FAQ ACCORDION COMPREHENSIVE STYLE OVERRIDES
   ========================================================================== */
.faq-accordion-item {
  transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease !important;
}

/* Smooth Accordion Content slide transitions */
/*.faq-accordion-content {*/
/*  max-height: 0;*/
/*  overflow: hidden;*/
/*  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;*/
/*}*/

.faq-accordion-item.active .faq-accordion-content,
.faq-accordion-item.is-open .faq-accordion-content {
  max-height: 800px !important;
  padding: 20px 25px 25px !important;
  border-top: 1px solid rgba(27, 191, 255, 0.08);
}

/* Sibling active/open highlight borders and active state styling */
.faq-accordion-item.active,
.faq-accordion-item.is-open {
  border-color: #1bbfff !important;
  background: rgba(27, 191, 255, 0.06) !important;
  box-shadow: 0 10px 30px rgba(27, 191, 255, 0.1) !important;
}

/* Rotating icons */
.faq-accordion-item.active .faq-accordion-icon,
.faq-accordion-item.is-open .faq-trigger-icon {
  transform: rotate(45deg);
  color: #ffd400 !important;
  background: rgba(255, 212, 0, 0.15) !important;
}

/* Focus styles for keyboard accessibility */
.faq-accordion-trigger:focus-visible {
  outline: 2px solid #ffd400;
  outline-offset: -2px;
}







/* ===== FAQ FINAL FIX ===== */
.faq-section .faq-answer {
    display: none !important;
    max-height: none !important;
    overflow: visible !important;
    height: auto !important;
    padding: 0 !important;
    transition: none !important;
}

.faq-section .faq-item.active .faq-answer {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
    height: auto !important;
    padding: 0 24px 24px !important;
}
