@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
  font-family: "Google Sans", sans-serif!important;
}

  /* ----- LIGHT THEME (no dark) ----- */
  :root {
    --gold: #e8a317;
    --gold-dark: #c47d0a;
    --neon-blue: #2a6df4;
    --neon-cyan: #0ea5e9;
    --light-bg: #f6f9fc;
    --card-bg: #ffffff;
    --card-shadow: 0 12px 32px rgba(0, 20, 40, 0.08);
    --text-dark: #0b1a2e;
    --text-muted: #4a5b70;
    --accent-red: #dc3545;
    --accent-green: #1ea84c;
    --border-light: #e6edf4;
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.gap-all{
  gap: 15px;
}
.how-to-play{
    text-align:center;
    background: #f1f1f1;
}
.newlogo{
  display: none;
}
/* hader  */
/* ===== NAVBAR ===== */
.navbar-gh {
    background: rgba(14, 14, 30, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar-brand-gh {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-decoration: none;
}

.navbar-brand-gh span {
    color: #ffcc00;
}

/* NAV LINKS */
.nav-link-gh {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    transition: .3s;
}

.nav-link-gh:hover {
    color: #ffcc00;
}

/* DROPDOWN */
.dropdown-menu {
    border: none;
    border-radius: 15px;
    background: #1c1f36;
    padding: 10px;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
}

.dropdown-item {
    color: #fff;
    border-radius: 10px;
    padding: 12px 15px;
    transition: .3s;
}

.dropdown-item:hover {
    background: #ffcc00;
    color: #000;
}

/* Desktop Hover Dropdown */
@media(min-width:992px){

    .navbar-gh .dropdown:hover .dropdown-menu{
        display:block;
        margin-top:0;
        animation: fadeDown .3s ease;
    }
}

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Buttons */
.btn-nav{
    background:#ffcc00;
    color:#000;
    padding:10px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.login-link{
    color:#fff;
    text-decoration:none;
}

/* Mobile Menu */
@media(max-width:991px){

.newlogo{
  display: block;
}
    .nav-link-gh{
        justify-content:space-between;
        width:100%;
    }

    .dropdown-menu{
        background:transparent;
        border:none;
        margin-top:10px;
        box-shadow: none;
      padding: 0px;
    }
.dropdown-item {
    color: #000;
}
    .btn-nav,
    .login-link{
        width:100%;
        justify-content:center;
        display:flex;
        margin-top:10px;
    }
}

/* Toggle */
.navbar-toggler-gh{
    border:none;
    background:none;
    color:#fff;
    font-size:30px;
}
/* hader  */
.section_padding{
  padding: 50px 0px;
}
.bgall{
  position: relative;
}
.bgall:before{
  content: '';
      left: 0px;
  opacity: 0.3;
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url('../image/learning-bg.svg');
  background-size: cover;
}
.section-tag{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    color:#6c4df6;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:0px;
}

.section-title span{
    color:#6c4df6;
}

.steps-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.step-card{
    width:320px;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:18px;
    padding:35px 25px;
    position:relative;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.step-number{
    position:absolute;
    top:15px;
    left:15px;
    width:35px;
    height:35px;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
}

.step-card:nth-child(3) .step-number{
    background:var(--gold);
}

.step-card:nth-child(5) .step-number{
    background:var(--gold);

}

.step-icon{
    width:80px;
    margin-bottom:15px;
}

.step-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.step-text{
    color:#777;
    line-height:1.6;
    font-size:15px;
}

.arrow{
    font-size:40px;
    color:#5cd46a;
    font-weight:bold;
}

.arrow.purple{
    color:#8b5cf6;
}

@media(max-width:991px){
    .steps-wrapper{
        flex-direction:column;
    }

    .arrow{
        transform:rotate(90deg);
    }

    .section-title{
        font-size:32px;
    }
}
.reward_design{
      display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.trustpage {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;

}

.trustpage li {
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  color: #000;
}

.gamehubchoose {
  h6 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #da940f;
  }

  h2 {
    font-size: 40px;
  }
}

.trustpage li .image_icon {
  width: 80px;
  height: 80px;
  border: 2px solid #cccccc54;
  padding: 10px;
  border-radius: 5px;
  margin: 15px auto 15px;
  background: #fff;

  img {
    margin-bottom: 0px;
  }
}

.trustpage li .cotentnplayer h3 {
  font-size: 20px;
}

.image_icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
  .trustpage {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trustpage {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .trustpage {
    grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: 'Inter', sans-serif;
  /* background: var(--light-bg); */
  color: var(--text-dark);
  overflow-x: hidden;
  z-index: 1;
}

body::before {
  content: '';
  background: url('../image/body.png');
  background-repeat: repeat;
  position: absolute;
  z-index: -1;
  opacity: 0.1;
  width: 100%;
  height: 100%;
}
.mobile-auth-buttons{
    display:flex;
    gap:10px;
    padding:10px;
}

.auth-btn{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 15px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:all .3s ease;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.login-btn{
    background:linear-gradient(135deg,#ff8a00,#ff5e00);
    color:#fff;
    font-size: 12px;
}

.admin-btn{
    background:linear-gradient(135deg,#1e293b,#0f172a);
    color:#fff;
}

.auth-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

.auth-btn i{
    font-size:16px;
}
.row.g-3.mt-3 {
  .col-4 {
    margin-top: 0px;
  }
}

.imagenew {
  width: 100%;
    height: 450px;
  img {
    height: 100%;
    object-fit: contain;
    width: 100%;
  }
}
.adminubttondesign{
      width: 100%;
    background: var(--gold);
    color: #000;
    display: block;
    padding: 6px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* ----- REDESIGNED HEADER (Premium Light Glass) ----- */
.navbar-gh {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgb(179 179 179);
  box-shadow: 0 10px 28px rgb(0 0 0 / 0%);
  padding: 15px 0px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-gh .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand-gh {

  font-weight: 900;
  font-size: 1.9rem;
  color: #0b1a2e !important;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: linear-gradient(135deg, #0b1a2e 0%, #1e3a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-brand-gh span {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  font-weight: 900;
  margin-left: 2px;
  text-shadow: 0 2px 8px rgba(232, 163, 23, 0.2);
}

.brand-icon {
  font-size: 2rem;
  color: var(--neon-cyan);
  -webkit-text-fill-color: var(--neon-cyan);
  margin-right: 0.2rem;
  filter: drop-shadow(0 4px 6px rgba(14, 165, 233, 0.25));
}

.nav-link-gh {
  color: #1e293b !important;
  font-weight: 600;
  font-size: 16px;
  border-radius: 40px;
  transition: 0.25s;
  text-decoration: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.2px;
}

.nav-link-gh i {
  font-size: 1rem;
  color: var(--neon-blue);
  transition: 0.2s;
}

.nav-link-gh:hover {
  background: rgba(42, 109, 244, 0.06);
  color: #0b1a2e !important;
  transform: translateY(-1px);
}

.nav-link-gh:hover i {
  color: var(--gold);
}

.btn-nav {
 background: linear-gradient(115deg, var(--neon-blue), #1d5bd6);
    color: #fff !important;
    border-radius: 40px;
    padding: 7px 10px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 6px 18px rgba(42, 109, 244, 0.3);
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.5rem;
}

.btn-nav i {
  font-size: 1rem;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42, 109, 244, 0.45);
  background: linear-gradient(115deg, #3b7df5, #1a4fca);
  color: #fff;
}

.login-link {
    color: #1e293b !important;
    font-weight: 600;
    font-size: 16px;
    border-radius: 40px;
    transition: 0.25s;
    text-decoration: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.2px;
}

.login-link:hover {
  color: #0b1a2e;
  background: rgba(0, 0, 0, 0.02);
}

.navbar-toggler-gh {
  border: 1px dashed #000;
  padding: 0.45rem 0.7rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  color: var(--text-dark);
  font-size: 1.5rem;
  line-height: 1;
  transition: 0.2s;
}

.navbar-toggler-gh:hover {
  background: rgba(42, 109, 244, 0.05);
  border-color: var(--neon-blue);
}

.navbar-toggler-gh:focus {
  box-shadow: 0 0 0 0.15rem rgba(42, 109, 244, 0.15);
  border-color: var(--neon-blue);
}

.navbar-toggler-gh i {
  color: #1e293b;
  font-size: 1.7rem;
}

@media (max-width: 991px) {
 

  .nav-link-gh {
    padding:15px  !important;
    width: 100%;
    justify-content: flex-start;
  }
.trustpage {
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}
.trustpage li {
    padding: 5px;
}
.imagenew {
    width: 100%;
    height: 256px;
    margin-bottom: 25px;
            margin-top: 25px;
}
  .btn-nav {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  .login-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.7rem 1.2rem;
  }
}

/* ----- HERO & REMAINING SECTIONS (fully preserved) ----- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0 0rem;
  background: url('../image/bgheade.jpg');
  /* background: linear-gradient(145deg, #ffffff 0%, #f2f7fe 100%); */
}

.hero-heading {

  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero-heading .gold {
  color: var(--gold);
  text-shadow: 0 4px 20px rgba(232, 163, 23, 0.2);
}

.hero-heading .blue {
  color: var(--neon-cyan);
  text-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

.btn-primary-gh {
  background: linear-gradient(135deg, var(--gold), #d48e0c);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 28px rgba(232, 163, 23, 0.35);
  transition: 0.25s;
  cursor: pointer;
}

.btn-primary-gh:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(232, 163, 23, 0.4);
}

.btn-outline-gh {
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--border-light);
  transition: 0.25s;
  cursor: pointer;
}

.btn-outline-gh:hover {
  border-color: var(--neon-blue);
  background: rgba(42, 109, 244, 0.04);
  transform: translateY(-3px);
}

.stat-pill {
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed #000;
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.stat-pill strong {
  color: var(--text-dark);
}

.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;

  img {
    width: 100%;
  }
}

.hero-img-scene {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 50% 50%, rgba(42, 109, 244, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.hero-img-placeholder {
  width: 320px;
  height: 380px;
  background: #ffffff;
  border-radius: 2rem;
  border: 1px dashed #000;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.hero-img-placeholder::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at 40% 30%, rgba(42, 109, 244, 0.03) 0%, transparent 70%);
  animation: rotateBg 12s linear infinite;
}

@keyframes rotateBg {
  to {
    transform: rotate(360deg);
  }
}

.hero-icon-big {
  font-size: 5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(232, 163, 23, 0.3));
  animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-icons-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-icon-sm {
  font-size: 2rem;
  filter: drop-shadow(0 0 6px rgba(42, 109, 244, 0.2));
  animation: floatY 2.5s ease-in-out infinite;
}

.hero-icon-sm:nth-child(2) {
  animation-delay: 0.5s;
  color: var(--accent-red);
}

.hero-icon-sm:nth-child(3) {
  animation-delay: 1s;
  color: var(--accent-green);
}

.float-chip {
  position: absolute;
  border-radius: 50%;
  animation: floatChip 4s ease-in-out infinite;
  font-size: 1.6rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
}

@keyframes floatChip {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(8deg);
  }
}

.fc1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.fc2 {
  top: 20%;
  right: 8%;
  animation-delay: 1s;
}

.fc3 {
  bottom: 20%;
  left: 3%;
  animation-delay: 2s;
}

.fc4 {
  bottom: 15%;
  right: 5%;
  animation-delay: 0.5s;
}

.img-note {
  font-size: 0.65rem;
  color: rgba(0, 0, 0, 0.25);
  text-align: center;
  margin-top: 0.2rem;
  font-style: italic;
  max-width: 90%;
}

.section-gh {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  border-radius: 25px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #da940f;
}

.section-title {

  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title span {
  color: var(--gold);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #f3d37c);
  border-radius: 4px;
  margin-bottom: 5px;
}

.game-img-panel {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px dashed #000;
  box-shadow: var(--card-shadow);
}

.game-img-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 2rem;
}

.game-img-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  min-height: 380px;
}

.gi-icon {
  font-size: 6rem;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.04));
  animation: floatY 3s ease-in-out infinite;
}

.gi-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gi-sub {
  font-size: 2.5rem;
  animation: floatY 3s ease-in-out infinite;
}

.gi-sub:nth-child(2) {
  animation-delay: 0.7s;
}

.gi-sub:nth-child(3) {
  animation-delay: 1.4s;
}

.gi-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.casino-bg {
  background: #f1f1f1;
}

.bonus-bg {
  background: #f1f1f1;
}

#download{
  background: #f1f1f1;
}

/* .cricket-bg { background: #f1f1f1; }
    .ludo-bg { background: #f1f1f1; }
    .alt-bg { background: #f5f9ff; }
    */
.cricket-img-bg {
  background: radial-gradient(ellipse at center, rgba(30, 168, 76, 0.06), transparent 70%);
}

.casino-img-bg {
  background: radial-gradient(ellipse at center, rgba(220, 53, 69, 0.05), transparent 70%);
}

.ludo-img-bg {
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.06), transparent 70%);
}

.bonus-img-bg {
  background: radial-gradient(ellipse at center, rgba(232, 163, 23, 0.06), transparent 70%);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px dashed #000;
  border-radius: 40px;
  padding: 0.35rem 1rem;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0.25rem;
}

.feature-badge i {
  color: var(--gold);
}

.badge-live {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: var(--accent-red);
  border-radius: 40px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-live::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
  display: block;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.stat-box {
    background: rgb(255 255 255);
    border: 2px dashed #000000;
    border-radius: 1rem;
    padding: 15px;
    text-align: center;
}

.stat-box .num {
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
}

.stat-box .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.reward-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #d7920e;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  transition: 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
      flex: 1 1 250px;
}

.reward-item:hover {
  border-color: var(--gold);
  background: #fefcf5;
}

.reward-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.reward-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.reward-desc {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

.download-section {
  background: #eef4fc;
}

.phone-mockup {
  background: #ffffff;
  border: 1px dashed #000;
  border-radius: 2.5rem;
  width: 240px;
  height: 480px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(42, 109, 244, 0.05), transparent 70%);
  border-radius: 50%;
}

.phone-screen-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 12px rgba(42, 109, 244, 0.2));
  animation: floatY 3s ease-in-out infinite;
}

.phone-mini-icons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-mini-icons i {
  font-size: 1.8rem;
  animation: floatY 2.5s ease-in-out infinite;
}

.phone-mini-icons i:nth-child(2) {
  animation-delay: 0.5s;
}

.phone-mini-icons i:nth-child(3) {
  animation-delay: 1s;
}

.phone-notch {
  position: absolute;
  top: 12px;
  width: 80px;
  height: 16px;
  background: var(--light-bg);
  border-radius: 0 0 1rem 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  border: 1px dashed #000;
  border-radius: 1rem;
  padding: 0.8rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: 0.2s;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.store-btn:hover {
  border-color: var(--gold);
  background: #fefcf5;
  color: var(--text-dark);
  transform: translateY(-2px);
}

.store-btn i {
  font-size: 2rem;
  color: var(--gold);
}

.store-btn small {
  color: var(--text-muted);
  font-size: 0.7rem;
  display: block;
}

.testimonial-section {
  position: relative;
  overflow: hidden;
}

.testi-card {
  background: #ffffff;
  border: 1px dashed #000000;
  border-radius: 1.5rem;
  padding: 1.8rem;
  backdrop-filter: blur(4px);
  transition: 0.25s;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.testi-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.02);
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

footer {
  background: #18181c;
  border-top: 1px dashed #000;
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-weight: 900;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-desc {
  color: #a3a3a3;
  font-size: 0.88rem;
  max-width: 280px;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-link {
  display: block;
  color: #a3a3a3;
  font-size: 16px;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: 0.15s;
}

.footer-link:hover {
  color: #a3a3a3;
}

.footer-icon-link {
  color: #a3a3a3;
  font-size: 1.3rem;
  transition: 0.2s;
}

.footer-icon-link:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px dashed #000;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.footer-game-icons {
  font-size: 1.3rem;
}

.footer-game-icons i {
  margin: 0 0.3rem;
}

.fi-cricket {
  color: var(--accent-green);
}

.fi-casino {
  color: var(--accent-red);
}

.fi-ludo {
  color: #6366f1;
}

.glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 109, 244, 0.1), transparent);
  margin: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
  margin-top: 0px;
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1025px) {  
  .reward-item {
    flex: 1 1 443px;
}
}
@media (max-width: 992px) {
  .footer-brand {
    font-size: 40px;
  }
  .login-btn,.admin-btn{
    font-size: 12px;
    padding: 8px;
}

  .navbar-toggler-gh {
    border: 1px dashed #000;
    padding: 4px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    color: var(--text-dark);
    font-size: 1.5rem;
    line-height: 1;
    transition: 0.2s;
}
.mobile-auth-buttons {
    display: flex;
    gap: 10px;
    padding: 0px;
}
  .footer-desc{
    width: 100%;
    max-width: max-content  ;
  }
.reward-item {
    flex: 1 1 443px;
    flex-direction: column;
}
.navbar-brand-gh {
    font-weight: 900;
    font-size: 16px;
    color: #0b1a2e !important;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0px;
    background: linear-gradient(135deg, #0b1a2e 0%, #1e3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.loginbutton{
  a{
    font-size: 15px;
  }
}
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 33px;
}
.trustpage li .cotentnplayer h3 {
    font-size: 13px;
}
.section-label {
    font-size: 14px;
}
  .section-gh {
    padding: 3rem 0;
  }
.mobile-auth-buttons {
    gap: 3px;
}
.login-btn, .admin-btn {
    font-size: 12px;
    padding: 5px 8px;
}
.hero-desc {
    font-size: 14px;
}
.btn-primary-gh {
    font-weight: 700;
    font-size: 13px;
    padding: 9px 15px;
}
.stat-box .num {
    font-size: 20px;
}
.stat-box .lbl {
    font-size: 10px;
}
.stat-box {
    background: rgb(255 255 255);
    border: 1px dashed #000000;
    border-radius: 1rem;
    padding: 7px;
    text-align: center;
}
  .hero {
    padding: 5rem 0 2rem;
  }

  .hero-img-wrap {
    min-height: 300px;
  }

  .game-img-panel {
    min-height: 280px;
  }

  .game-img-inner {
    min-height: 280px;
  }

  .gi-icon {
    font-size: 4rem;
  }

  .hero-img-placeholder {
    width: 260px;
    height: 300px;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }
  .gamehubchoose {
 h6{
  font-size: 15px;
 }
  h2 {
    font-size: 30px;
}
}
}