:root {
    --primary: #00f2ff;   
    --secondary: #bc13fe; 
    --bg-dark: #060613;
    --card-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh; /* આખું પેજ કવર કરવા માટે */
    
    /* આ મેઈન સેટિંગ છે */
    background: linear-gradient(#012149f8, #012149f8), 
                url('https://ludorollers.co.in/assets/images/Ludo_Not_Blur.png');
    background-size: cover;          /* ઈમેજ આખા સ્ક્રીન પર ફિટ થશે */
    background-position: center;     /* ઈમેજ સેન્ટરમાં રહેશે */
    background-repeat: no-repeat;    /* ઈમેજ રિપીટ નહીં થાય */
    background-attachment: fixed;    /* સ્ક્રોલ કરવા છતાં બેકગ્રાઉન્ડ સ્થિર રહેશે */
}

/* HERO SECTION */

.hero {
    /* background-color: #060613;  */
    overflow: hidden;
    padding: 15px 5% 15px;
}

.hero-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
} 

 .main-hero-img {
    width: 170%; 
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.2));
    object-fit: contain;
} 

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 900; 
    letter-spacing: -1px; 
}

.logo span { 
    color: var(--primary); 
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 900; 
    line-height: 1.05; 
    margin: 14px 0; 
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.8rem;
    border: 1px solid var(--primary); 
}

.logo-interactive {
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-interactive:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.cta-main {
    background: linear-gradient(45deg, var(--secondary), var(--primary)); 
    border: none;
    padding: 14px 36px;
    color: white;
    font-weight: 900;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.4);
    transition: 0.3s;
    margin-top: 30px;
} 

 .cta-main:hover { 
    transform: scale(1.05); 
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4); 
} 

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.blur-all #page-content {
    filter: blur(8px);
    transition: filter 0.4s ease;
}

.logo-focus {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease forwards;
}

.logo-box {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box .main-logo {
    width: 140px;
    height: 140px;
    border-radius: 24px;
    animation: logoPop 0.5s ease forwards;
    box-shadow:
        0 0 20px rgba(0,242,255,0.4),
        0 0 45px rgba(188, 19, 254, 0.3);
    z-index: 2;
}

.logo-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: var(--primary);
    animation: spinSlow 1.2s linear infinite;
}

.logo-box::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,242,255,0.15), transparent 70%);
    animation: pulseGlow 1.2s ease-in-out infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(0.95); }
}

@keyframes logoPop {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

nav {
    position: relative;
    width: 100%;
    transition: all 0.35s ease;
    z-index: 1000;
}

nav.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 5%;
    background: #012149f8;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px #012149f8;
}

.nav-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 14px;
    border: 2px solid var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.playstore-btn img {
    height: 40px;
    transition: transform 0.3s;
}

.playstore-btn:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    nav {
        padding: 15px 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: row; 
        justify-content: space-between;
        gap: 10px;
    }

    .logo {
        font-size: 1.4rem; 
    }

    .nav-logo-img {
        width: 40px; 
        height: 40px;
        border-radius: 10px;
    }

    .nav-actions {
        gap: 10px; 
    }

    .playstore-btn img {
        height: 32px; 
    }
}

@media (max-width: 360px) {
    nav {
        flex-direction: column; 
        gap: 15px;
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
} 

 .hero-content {
    flex: 1;
}

.hero-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-mobile-img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.3));
    animation: float 4s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-img-preview {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-image-wrapper {
  position: relative;
  height: 520px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.hero-phone {
  position: absolute;
  height: 90%;
  width: auto;
  object-fit: contain;
  transition: transform 0.9s ease, opacity 0.9s ease;
  filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.25));
  opacity: 0;
  margin-bottom: 20px;
}

.hero-phone.center {
  transform: translateX(0) scale(1);
  z-index: 3;
  opacity: 1;
}

.hero-phone.right {
  transform: translateX(55%) scale(0.85);
  z-index: 2;
  opacity: 0.9;
}

.hero-phone.left {
  transform: translateX(-55%) scale(0.85);
  z-index: 1;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .hero-image-wrapper {
    height: 420px;
  }

  .hero-phone.right,
  .hero-phone.left {
    opacity: 0.4;
  }
}

@media (max-width: 992px) {
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px;
    }

    .hero-content {
        order: 1 !important;
        width: 100%;
    }

    .hero-image-wrapper {
        order: 2 !important;
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 450px !important; 
        height: 450px !important;
        margin-top: 30px;
        overflow: visible !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    .main-hero-img {
        position: absolute !important;
        height: 100% !important;
        width: auto !important;
        max-width: 95vw !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        visibility: visible !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        min-height: 350px !important;
        height: 350px !important;
    }
    
    h1 {
        font-size: 2.5rem;
    }
}

/* HOW IT WORKS */

.how-it-works {
    padding: 80px 6%;
    text-align: center;
    /* background-color: var(--bg-dark); */
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step {
    background: var(--card-bg);
    padding: 40px 20px;
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border-bottom: 4px solid #FFD700;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    box-shadow: none;
}

.step:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border-color: #FFD700;
    transform: translateY(-8px); 

}

.step-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.step:hover .step-icon {
    transform: scale(1.15) rotate(5deg); 
}

.step h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.step p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.5;
}

[data-aos="zoom-in-custom"] {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in-custom"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

.live-stats {
    padding: 60px 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; 
    text-align: center;
    /* background: var(--bg-dark); */
}

.live-stats-header {
    width: 100%;
    margin-bottom: 40px;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff; 
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.stat:hover h3 {
    color: var(--primary);
    animation: pulseText 1.5s infinite;
}

.stat p {
    color: #b0b0b0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulseText {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .live-stats { flex-direction: column; gap: 30px; }
    .stat h3 { font-size: 2.5rem; }
}

.app-showcase {
  padding: 80px 6%;
  text-align: center;
  /* background: radial-gradient(circle at top, #0b0b2a, #060613); */
}

.section-title {
  font-size: 3.2rem;
  margin-bottom: 80px;
  font-weight: 800;
}

.section-title span {
  color: var(--primary);
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  justify-content: center; 
  gap: 40px;
}

.phone-circle {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px solid #ffffff40;
  background: var(--card-bg); 
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.phone-img {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -20%);
  width: 200px;
  filter: drop-shadow(0 35px 70px var(--card-bg));
  transition: transform 0.6s ease;
}

.phone-circle:hover {
  transform: translateY(-12px);
}

.phone-circle:hover .phone-img {
  transform: translate(-50%, -28%) scale(1.08);
}

.phone-info {
  position: absolute;
  inset: 0;
  border-radius: 50%;

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

  padding: 40px;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.9)
  );

  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
  z-index: 3;
}

.phone-circle:hover .phone-info {
  opacity: 1;
  transform: scale(1);
}

.phone-info h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.phone-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.phone-one:hover .phone-info {
  box-shadow: 0 0 45px rgba(0,242,255,0.6);
}

.phone-two:hover .phone-info {
  box-shadow: 0 0 45px rgba(180,0,255,0.6);
}

.phone-three:hover .phone-info {
  box-shadow: 0 0 45px rgba(255,180,0,0.6);
}

@media (max-width: 1100px) {
  .phone-row {
    grid-template-columns: 1fr;
    gap: 120px;
  }

  .phone-circle {
    width: 340px;
    height: 340px;
  }

  .phone-img {
    width: 240px;
    transform: translate(-50%, -15%);
  }
}

/*OTHER FEATURES*/


.features {
    padding: 80px 6%;
    text-align: center;
    /* background-color: var(--bg-dark);  */
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: rgba(255, 255, 255, 0.03); 
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:nth-child(1) { border-bottom: 3px solid #FFD700; }
.card:nth-child(2) { border-bottom: 3px solid #FFD700; }
.card:nth-child(3) { border-bottom: 3px solid #FFD700; }

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .card { padding: 30px 20px; }
}

/* GAME MODES */

.game-modes {
    padding: 80px 6%;
    text-align: center;
    /* background: var(--bg-dark);  */
}

.mode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mode-card {
    position: relative;
    padding: 60px 40px;
    border-radius: 35px;
    background: var(--card-bg); 
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: 0.6s;
    z-index: -1;
}

.mode-card:hover::before {
    top: -20%;
    left: -20%;
}

.mode-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.mode-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.mode-card.red { 
    border-bottom: 4px solid #bc13fe;
}
.mode-card.red:hover {
    box-shadow: 0 15px 40px #BC13FE2e;
    border-color: #bc13fe;
    transform: translateY(-15px) scale(1.05);
}
.mode-card.red h3 { color: #bc13fe; }

.mode-card.blue { 
    border-bottom: 4px solid #FFD700;
}
.mode-card.blue:hover {
    box-shadow: 0 15px 40px #FFD7002e;
    border-color: #FFD700;
    transform: translateY(-15px) scale(1.05);
}
.mode-card.blue h3 { color: #FFD700; }

.mode-card.green { 
    border-bottom: 4px solid #00FF88;
}
.mode-card.green:hover {
    box-shadow: 0 15px 40px #00ff882e;
    border-color: #00FF88;
    transform: translateY(-15px) scale(1.05);
}
.mode-card.green h3 { 
    background: linear-gradient(to bottom, #00FF88, #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mode-card:hover h3 {
    letter-spacing: 1px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mode-card {
        padding: 40px 20px;
    }
}

/* --- COMPACT MEGA CTA --- */

.mega-cta {
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 20px;
    margin: 30px auto; 
    background: var(--card-bg); 
    backdrop-filter: blur(15px);
    max-width: 90%; 
}

.mega-cta p {
    font-size: 1rem;
    color: #ccc; 
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .mega-cta {
        margin: 20px auto;
        padding: 30px 15px;
    }
   
}

section h2 {
    font-size: 2.2rem;         
    font-weight: 400;          
    text-align: center;
    letter-spacing: 4px;       
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    color: #fff;
}

/* section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 15px auto 0;
    border-radius: 10px;
} */

section h2 span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    section h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .card { 
        padding: 25px 15px; 
    }

    .live-stats {
        flex-direction: column;
        gap: 30px;
    }

    .mega-cta {
        margin: 20px auto;
        padding: 30px 15px;
        width: 95%;
    }
}

/* EARN SECTION */

.earn-section {
  /* background: radial-gradient(circle at top, #0b0b22, var(--bg-dark)); */
  /* background: #1D3AAC80; */
      background: var(--card-bg); 
    backdrop-filter: blur(15px);
  padding: 100px 20px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.earn-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr; 
  align-items: center;
  gap: 40px;
}


.earn-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1.05); 
}


.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  /* background: radial-gradient(circle, var(--secondary), transparent 70%); */
  filter: blur(60px);
  z-index: 0;
}

.earn-phone {
  width: 320px;     
  max-width: 100%;
  z-index: 2;
  animation: floatPhone 4s ease-in-out infinite;
}

.float-item {
  position: absolute;
  width: 50px;
  z-index: 3;
  animation: floatItem 3s ease-in-out infinite;
}

.coin.one {
  top: 10%;
  left: 15%;
}

.coin.two {
  bottom: 15%;
  right: 20%;
  animation-delay: 1s;
}

.gift {
  top: 25%;
  right: 10%;
}

.trophy {
  bottom: 20%;
  left: 10%;
}

.offer-pill {
  position: absolute;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  font-weight: 600;
  z-index: 4;
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
}

.offer-pill.left {
 left: 10%;
  top: 30%;
}

.offer-pill.right {
  left: 80%;
  top: 55%;
}

.offer-pill {
  animation: pillFloat 3s ease-in-out infinite;
}

@keyframes pillFloat {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-60%) scale(1.03); }
}

.earn-content {
  background: var(--card-bg);
  padding: 28px 30px; 
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.05);
}

.earn-content h2 {
  font-size: 30px;   
  line-height: 1.25;
  margin-bottom: 16px;
}

.earn-content h2 span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.earn-desc {
  font-size: 16px;
  color: #cfcfe8;
  margin-bottom: 25px;
}

.earn-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.earn-points li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  color: #e6e6ff;
}

.earn-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.earn-btn {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  color: #000;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earn-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(188, 19, 254, 0.7);
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatItem {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .earn-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .earn-visual {
    margin-bottom: 40px;
  }

  .offer-pill.left,
  .offer-pill.right {
    display: none;
  }
}

/* EXTRA FEATURE */

.horizontal-features {
    padding: 60px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.slider-container {
    display: flex;
    gap: 25px;
    padding: 30px 5%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; 
}

.slider-container::-webkit-scrollbar { display: none; }

.feat-card {
    min-width: 280px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08); 
    padding: 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.feat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feat-card:hover .feat-icon-box {
    transform: scale(1.2) rotate(-10deg);
    filter: brightness(1.2);
}

.feat-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feat-icon-box.cyan { background: rgba(0, 242, 255, 0.1); color: var(--primary); }
.feat-icon-box.purple { background: rgba(188, 19, 254, 0.1); color: var(--secondary); }

.feat-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    transition: color 0.3s ease;
}

.feat-card:hover h3 {
    color: var(--primary);
}

.feat-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 768px) {
  .slider-container {
    flex-direction: column;
    overflow-x: hidden;
    gap: 20px;
  }

  .feat-card {
    min-width: 100%;
  }
}

/* FOOTER */

.site-footer {
  background: #012149f8;
  padding: 80px 6% 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 56px;
  height: 56px;
}

.footer-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-title span {
  color: #00F2FF;
}

.footer-links {
  list-style: none;
  text-align: center;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #B0B0B0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00F2FF;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
  transition: all 0.35s ease;
  text-decoration: none;
}

.footer-social a:hover {
  color: #060613;
  background: white;
}

.footer-playstore img {
  height: 44px;
}

.footer-copy {
  text-align: center;
  margin-top: 60px;
  font-size: 0.9rem;
  color: #B0B0B0;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-actions {
    align-items: center;
  }
}

/* ===== SIMPLE LOADER ===== */

#simple-loader {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 19, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#simple-loader.active {
  opacity: 1;
  pointer-events: all;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

