/* ============================================
   GoPlay11 — Final Merged CSS
   Domain: go11play.com
   Font: System Stack (Zero External Load)
   Updated: April 2026
   ============================================ */

/* ── CSS Variables ── */
:root {
  --clr-primary:     #0b3d1e;
  --clr-mid:         #1a6b3a;
  --clr-accent:      #f5c518;
  --clr-accent-2:    #ff6b2b;
  --clr-bg:          #f5f7f5;
  --clr-white:       #ffffff;
  --clr-text:        #1a1a2e;
  --clr-text-muted:  #4b5563;
  --clr-border:      #d1d5db;
  --clr-surface:     #ffffff;
  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       16px;
  --radius-full:     9999px;
  --shadow-sm:       0 1px 3px rgba(0,0,0,.08);
  --shadow-md:       0 4px 12px rgba(0,0,0,.12);
  --shadow-lg:       0 8px 24px rgba(0,0,0,.16);
  --transition:      0.25s ease-in-out;
  --font-system:     -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                     Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --header-gradient: linear-gradient(90deg, #0b3d1e 0%, #1a6b3a 50%, #0d2b15 100%);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Global Font ── */
html, body, h1, h2, h3, h4, h5, h6,
p, a, span, li, ul, ol,
input, button, textarea, select,
label, small, strong, em {
  font-family: var(--font-system) !important;
  font-weight: 400;
  line-height: 1.5;
}

/* Global reset ke BAAD yeh add karo */
.splide__slide img { height: 100% !important; }


html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}

body { background-color: var(--clr-bg); color: var(--clr-text); }

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }


/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container-info { max-width: 900px; margin: 0 auto; }


/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--header-gradient);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  border-bottom: 2px solid var(--clr-accent);
}
.logo img { height: 70px; width: auto; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav ul li a {
  color: #e8f5e9;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav ul li a:hover {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: all 0.3s ease-in-out;
}

/* ── Mobile Sidebar ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 270px;
  height: 100vh;
  background: var(--header-gradient);
  padding: 60px 20px 40px;
  transition: right 0.35s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--clr-accent);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu ul li a {
  color: #e8f5e9;
  font-size: 17px;
  font-weight: 500;
  padding: 8px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}
.mobile-menu ul li a:hover { color: var(--clr-accent); }
.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity var(--transition);
}
.close-btn:hover { opacity: 1; }


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--header-gradient);
  color: #c8e6c9;
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
  border-top: 2px solid var(--clr-accent);
}
.site-footer a { color: var(--clr-accent); font-weight: 600; transition: color var(--transition); }
.site-footer a:hover { color: #fff; }
.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 56px 20px;
  text-align: center;
  background: linear-gradient(145deg, #e8f5e9 0%, #f1f8e9 50%, #e0f2f1 100%);
  border-bottom: 1px solid #c8e6c9;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}
.hero-logo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 18px 0;
  object-fit: contain;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--clr-accent);
}
.hero-subtitle { font-size: 20px; font-weight: 700; color: var(--clr-primary); margin-bottom: 6px; }
.hero-download-text { font-size: 15px; color: var(--clr-text-muted); margin-bottom: 22px; }
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px;
}
.download-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-mid));
  color: #fff;
  padding: 13px 36px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 600;
  border: 2px solid var(--clr-accent);
  width: 100%;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(13,27,42,.3);
}
.download-btn:hover {
  transform: scale(1.09);
  background: linear-gradient(90deg, var(--clr-accent), #e8a800);
  color: var(--clr-primary);
  box-shadow: 0 6px 24px rgba(245,197,24,.45);
}
.hero-description {
  margin-top: 18px;
  font-size: 15px;
  max-width: 680px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  text-align: center;
}
.hero-description strong { font-weight: 600; color: var(--clr-primary); }

/* ── Hero Badges ── */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.badge {
  background: rgba(11,61,30,.08);
  border: 1px solid #c8e6c9;
  color: var(--clr-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}


/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 28px;
  display: inline-block;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
  margin: 8px auto 0;
}
.section-desc {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 28px;
  text-align: center;
}


/* ============================================
   APP INFO / TABLE
   ============================================ */
.app-info-section { padding: 48px 20px; background: var(--clr-white); text-align: center; }
.responsive-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.responsive-table table {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}
.responsive-table th,
.responsive-table td { border: 1px solid var(--clr-border); padding: 11px 16px; text-align: left; font-size: 14px; }
.responsive-table th {
  background: var(--clr-primary);
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-align: center;
}
.responsive-table tr:nth-child(even) td { background: #f0f7f0; }
.responsive-table td:first-child { font-weight: 600; color: var(--clr-primary); }
.responsive-table a { color: var(--clr-mid); font-weight: 600; }
.responsive-table a:hover { text-decoration: underline; }
.app-description {
  margin-top: 22px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-inline: auto;
}


/* ============================================
   STEPS / FEATURES / SPORTS CARDS
   ============================================ */
.steps-section,
.sports-section { padding: 48px 20px; background: #fff; text-align: center; }
.features-section { padding: 56px 20px; background: var(--clr-bg); text-align: center; }

.steps-grid,
.features-grid,
.sports-grid { display: grid; gap: 20px; max-width: 1100px; margin: 0 auto; }
.steps-grid   { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.features-grid{ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.sports-grid  { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); max-width: 800px; }

.step-card, .feat-card, .sport-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--clr-primary);
  color: var(--clr-accent);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step-card h3,
.feat-card h3,
.sport-card h3 { font-size: 16px; font-weight: 700; color: var(--clr-primary); margin-bottom: 10px; }
.step-card p,
.feat-card p,
.sport-card p  { font-size: 14px; color: var(--clr-text-muted); line-height: 1.7; }
.feat-icon,
.sport-icon    { font-size: 34px; margin-bottom: 12px; }


/* ============================================
   NB9 CONTENT CARDS
   ============================================ */
.nb9game-section { padding: 56px 20px; background: var(--clr-bg); text-align: center; }
.container-nb9 {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid #d7eedd;
}
.nb9-title { font-size: 24px; font-weight: 700; text-align: center; color: var(--clr-primary); margin-bottom: 14px; }
.nb9-desc {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 32px;
  max-width: 720px;
  margin-inline: auto;
}
.nb9-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-mid);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nb9-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.nb9-card h3 { color: var(--clr-primary); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.nb9-card p,
.nb9-card li  { font-size: 15px; line-height: 1.7; color: #374151; }
.nb9-card ul,
.nb9-card ol  { margin-left: 22px; margin-top: 8px; }
.nb9-card a   { color: var(--clr-mid); font-weight: 600; }
.nb9-card a:hover { text-decoration: underline; }
.nb9-warning  { background: #fff9f0; border-left-color: var(--clr-accent-2); }
.nb9-warning h3 { color: var(--clr-accent-2); }


/* ============================================
   POINTS SECTION
   ============================================ */
.points-section { padding: 52px 20px; background: var(--clr-bg); text-align: center; }
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 8px;
}
.points-card {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--clr-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.points-captain { border-top: 4px solid #f5c518; }
.points-vc      { border-top: 4px solid #a5d6a7; }
.points-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  background: #fffde7;
  color: #7b5e00;
  border: 1px solid #f5c518;
}
.points-vc .points-badge { background: #f0fff4; color: var(--clr-primary); border-color: #a5d6a7; }
.points-multi { font-size: 56px; font-weight: 700; color: var(--clr-primary); line-height: 1; margin-bottom: 12px; }
.points-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 8px; }
.points-card small {
  font-size: 12px;
  color: var(--clr-primary);
  font-weight: 600;
  display: block;
  background: #f0fff4;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}


/* ============================================
   WITHDRAWAL SECTION
   ============================================ */
.withdraw-section { padding: 52px 20px; background: #fff; text-align: center; }
.withdraw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 8px;
}
.withdraw-card {
  background: var(--clr-bg);
  border: 1px solid #c8e6c9;
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
}
.w-icon { font-size: 34px; margin-bottom: 10px; }
.withdraw-card h3 { font-size: 16px; font-weight: 700; color: var(--clr-primary); margin-bottom: 6px; }
.withdraw-card p  { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; }
.withdraw-steps {
  margin-top: 24px;
  background: var(--clr-bg);
  border: 1px solid #c8e6c9;
  border-left: 4px solid var(--clr-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: left;
  max-width: 640px;
  margin-inline: auto;
}
.withdraw-steps h3 { font-size: 16px; font-weight: 700; color: var(--clr-primary); margin-bottom: 12px; }
.withdraw-steps ol { margin-left: 20px; }
.withdraw-steps li { font-size: 14px; color: var(--clr-text-muted); line-height: 1.7; margin-bottom: 4px; }


/* ============================================
   STATS SECTION
   ============================================ */
.stats-section { padding: 52px 20px; background: var(--clr-primary); text-align: center; }
.stats-section .section-title { color: #fff; }
.stats-section .section-title::after { background: var(--clr-accent); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-card  { text-align: center; padding: 16px 10px; }
.stat-num   { font-size: 36px; font-weight: 700; color: var(--clr-accent); display: block; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: #a5d6a7; font-weight: 500; }


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 56px 20px;
  background: linear-gradient(135deg, #0b3d1e, #1a6b3a, #0d2b15);
  text-align: center;
}
.cta-title { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.cta-sub   { font-size: 15px; color: #a5d6a7; margin-bottom: 26px; }
.cta-btn {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-primary);
  padding: 14px 42px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  border: 2px solid #e8a800;
}


/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { padding: 52px 20px; background: var(--clr-bg); text-align: center; }
.faq-wrap    { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 15px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-arrow { font-size: 14px; color: var(--clr-mid); transition: transform .3s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  padding: 0 18px;
  background: #fafff9;
}
.faq-item.open .faq-answer { max-height: 220px; padding: 14px 18px; }


/* ============================================
   SLIDER
   ============================================ */
/*.slider__section  { padding: 32px 20px; background: var(--clr-bg); }*/
/*.slider__wrapper  { max-width: 900px; margin: 0 auto; display: block; }*/
/*.slider__column   { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }*/
/*.splide__slide img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 16/9; }*/


/* ============================================
   SLIDER
   ============================================ */
/*.slider__section  { padding: 32px 20px; background: var(--clr-bg); }*/
/*.slider__wrapper  { max-width: 900px; margin: 0 auto; display: block; }*/
/*.slider__column   { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }*/

/*.splide__track,*/
/*.splide__list,*/
/*.splide__slide    { height: 420px !important; }*/

/*.splide__slide img {*/
/*  width: 100% !important;*/
/*  height: 100% !important;*/
/*  object-fit: cover !important;*/
/*  object-position: center top !important;*/
/*  display: block !important;*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .splide__track,*/
/*  .splide__list,*/
/*  .splide__slide  { height: 240px !important; }*/
/*}*/
/*@media (max-width: 480px) {*/
/*  .splide__track,*/
/*  .splide__list,*/
/*  .splide__slide  { height: 180px !important; }*/
/*}*/


/* ============================================
   DEPOSIT SECTION
   ============================================ */
.deposit-section { padding: 52px 20px; background: var(--clr-bg); text-align: center; }
.deposit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 18px;
}
.deposit-card {
  background: #fff;
  border: 1px solid #c8e6c9;
  border-radius: var(--radius-lg);
  padding: 22px 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.deposit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dep-icon { font-size: 34px; margin-bottom: 10px; }
.deposit-card h3 { font-size: 15px; font-weight: 700; color: var(--clr-primary); margin-bottom: 6px; }
.deposit-card p  { font-size: 13px; color: var(--clr-text-muted); line-height: 1.5; }
.deposit-note {
  font-size: 14px;
  color: var(--clr-primary);
  font-weight: 600;
  margin-top: 16px;
  background: #f0fff4;
  border: 1px solid #c8e6c9;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: inline-block;
}


/* ============================================
   TIPS SECTION
   ============================================ */
.tips-section { padding: 52px 20px; background: linear-gradient(145deg, #f0fff4, #e8f5e9); text-align: center; }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.tip-card {
  background: #fff;
  border: 1px solid #c8e6c9;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tip-num { font-size: 28px; font-weight: 700; color: var(--clr-accent); -webkit-text-stroke: 1px var(--clr-mid); margin-bottom: 10px; display: block; }
.tip-card h3 { font-size: 15px; font-weight: 700; color: var(--clr-primary); margin-bottom: 8px; }
.tip-card p  { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .main-nav  { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .logo img         { height: 65px; }
  .hero-title       { font-size: 20px; }
  .hero-subtitle    { font-size: 17px; }
  .hero-logo        { width: 150px; height: 150px; }
  .download-btn     { font-size: 15px; padding: 11px 22px; }
  .section-title    { font-size: 19px; }
  .responsive-table table { font-size: 13px; }
  .badge            { font-size: 12px; padding: 5px 11px; }
  .points-multi     { font-size: 44px; }
  .stat-num         { font-size: 28px; }
  .cta-title        { font-size: 20px; }
  .cta-sub          { font-size: 14px; }
  .cta-btn          { padding: 12px 28px; font-size: 15px; }
}

@media (max-width: 600px) {
  .footer-container { flex-direction: column; font-size: 13px; gap: 5px; }
  .container-nb9    { padding: 20px 16px; }
  .nb9-title        { font-size: 19px; }
  .nb9-card         { padding: 16px; }
  .nb9-card h3      { font-size: 16px; }
  .nb9-card p,
  .nb9-card li      { font-size: 14px; }
}

@media (max-width: 480px) {
  .logo img         { height: 60px; }
  .hero-section     { padding: 36px 14px; }
  .hero-title       { font-size: 18px; }
  .hero-description { font-size: 13px; }
  .steps-grid,
  .features-grid,
  .sports-grid      { grid-template-columns: 1fr; }
  .container-nb9    { padding: 18px 14px; }
  .points-grid,
  .withdraw-grid,
  .stats-grid       { grid-template-columns: 1fr; }
  .deposit-grid     { grid-template-columns: repeat(2, 1fr); }
  .tips-grid        { grid-template-columns: 1fr; }
  .faq-question     { font-size: 14px; }
}