@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-primary:  #0a192f;
  --bg-surface:  #112240;
  --bg-card:     #172a45;
  --bg-alt:      #0b162a;
  --accent:      #00a4e4;
  --accent-light:#00c0f9;
  --accent-green:#25d366;
  --text:        #f1f5f9;
  --muted:       #8892b0;
  --border:      rgba(255,255,255,0.08);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --shadow-glow: 0 8px 32px rgba(0,164,228,0.18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg-primary); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }

/* ---- HEADER & MESH NAVIGATION ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: 72px; display: flex; align-items: center;
  background: rgba(10, 25, 47, 0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.logo-link { display: flex; align-items: center; gap: 0.55rem; font-weight: 900; font-size: 1.5rem; letter-spacing: -0.03em; color: #fff; }
.logo-link .brand-highlight { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 0.4rem; list-style: none; }
.main-nav > li { position: relative; }
.main-nav a, .nav-trigger { padding: 0.5rem 0.85rem; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 500; color: var(--muted); cursor: pointer; display: flex; align-items: center; gap: 0.25rem; transition: color 0.2s, background 0.2s; border: none; background: transparent; }
.main-nav a:hover, .main-nav a.active, .nav-trigger:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* Mega Dropdown Panel */
.cmp-drop { position: relative; }
.cmp-mega {
  display: none; position: absolute; top: 100%; right: 0;
  width: 600px; background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 1.5rem;
  grid-template-columns: repeat(3, 1fr); gap: 1.5rem; z-index: 1100;
}
.cmp-drop:hover .cmp-mega, .cmp-drop.open .cmp-mega { display: grid; }
.cmp-mega-col { display: flex; flex-direction: column; gap: 0.6rem; }
.cmp-mega-h { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; color: var(--accent); letter-spacing: 0.05em; padding-bottom: 0.25rem; border-bottom: 1px solid var(--border); }
.cmp-mega-col a { padding: 0.35rem 0; font-size: 0.88rem; color: var(--muted); display: block; }
.cmp-mega-col a:hover { color: #fff; background: transparent; }

/* CTAs in Header */
.header-ctas { display: flex; align-items: center; gap: 0.75rem; }
.btn-login-header { padding: 0.45rem 1rem; border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 0.88rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.04); transition: background 0.2s; }
.btn-login-header:hover { background: rgba(255,255,255,0.08); }
.btn-signup-header { padding: 0.45rem 1.15rem; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 700; color: #fff; background: var(--accent); transition: background 0.2s, transform 0.2s; }
.btn-signup-header:hover { background: var(--accent-light); transform: translateY(-1px); }

.menu-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 0.4rem; }

/* ---- HERO SECTION ---- */
.hero { min-height: 82vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 3rem 0; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0,164,228,0.15) 0%, transparent 65%), radial-gradient(ellipse 55% 45% at 90% 50%, rgba(0,192,249,0.07) 0%, transparent 65%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0,164,228,0.1); border: 1px solid rgba(0,164,228,0.3); color: var(--accent-light); padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.78rem; font-weight: 600; margin-bottom: 1.5rem; }
.live-dot { width: 7px; height: 7px; background: var(--accent-green); border-radius: 50%; flex-shrink: 0; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(1.5)} }
.hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.15; letter-spacing: -0.04em; margin-bottom: 1.2rem; }
.hero h1 .highlight { color: var(--accent); }
.hero-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 520px; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-primary { background: var(--accent); color: #fff; padding: 0.9rem 2.2rem; border-radius: var(--radius-sm); font-weight: 800; font-size: 0.98rem; box-shadow: var(--shadow-glow); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,164,228,0.35); }
.btn-secondary { background: rgba(255,255,255,0.05); color: #fff; padding: 0.9rem 2.2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.98rem; border: 1px solid var(--border); cursor: pointer; transition: background 0.2s, transform 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* Hero Stats */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius-md); overflow: hidden; margin-top: 2rem; max-width: 500px; }
.hero-stat { background: var(--bg-surface); padding: 1.2rem 1rem; text-align: center; }
.hero-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--accent-light); }
.hero-stat-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-img-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); width: 100%; max-width: 480px; aspect-ratio: 4/5; position: relative; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,47,0.9) 0%, transparent 60%); }
.hero-floating-card { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; background: rgba(17, 34, 64, 0.85); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1rem; display: flex; align-items: center; gap: 1rem; }
.floating-icon { font-size: 1.8rem; background: rgba(0,164,228,0.1); border-radius: 8px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.floating-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.15rem; }
.floating-text p { font-size: 0.78rem; color: var(--muted); }

/* ---- QUICK LOGIN / SIGNUP PAGE STYLE ---- */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: 90vh; padding: 2rem 0; background: var(--bg-alt); }
.auth-container { width: 100%; max-width: 460px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-card); position: relative; }
.auth-logo { text-align: center; margin-bottom: 1.8rem; font-size: 1.8rem; font-weight: 900; }
.auth-title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 0.5rem; }
.auth-subtitle { font-size: 0.92rem; color: var(--muted); text-align: center; margin-bottom: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-input { min-height: 48px; background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 1rem; color: #fff; font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s; }
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,164,228,0.15); }
.form-options { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.checkbox-label input { accent-color: var(--accent); }
.forgot-pass { color: var(--accent-light); }
.forgot-pass:hover { text-decoration: underline; }
.btn-submit { width: 100%; min-height: 50px; background: var(--accent); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 800; cursor: pointer; transition: background 0.2s, transform 0.2s; margin-bottom: 1.5rem; }
.btn-submit:hover { background: var(--accent-light); transform: translateY(-1px); }
.auth-divider { display: flex; align-items: center; text-align: center; color: var(--muted); font-size: 0.78rem; margin: 1.5rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-bottom: 1px solid var(--border); }
.auth-divider::before { margin-right: .75rem; }
.auth-divider::after { margin-left: .75rem; }
.btn-whatsapp-auth { width: 100%; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(37, 211, 102, 0.3); color: var(--accent-green); border-radius: var(--radius-sm); font-weight: 700; transition: background 0.2s, color 0.2s; font-size: 0.95rem; }
.btn-whatsapp-auth:hover { background: var(--accent-green); color: #000; }
.auth-footer { text-align: center; font-size: 0.88rem; color: var(--muted); margin-top: 1.8rem; }
.auth-footer a { color: var(--accent-light); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

/* ---- BENTO / LOBBIES GAME SECTION ---- */
.lobbies-section { padding: 4.5rem 0; background: var(--bg-alt); }
.lobbies-header { text-align: center; margin-bottom: 3.5rem; }
.lobbies-header h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.8rem; }
.lobbies-header h2 .highlight { color: var(--accent); }
.lobbies-header p { color: var(--muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.lobbies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.game-card { background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
.game-card:hover { transform: translateY(-6px); border-color: rgba(0, 164, 228, 0.35); box-shadow: 0 14px 38px rgba(0,0,0,0.5); }
.game-card-img-wrap { width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative; }
.game-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.game-card:hover .game-card-img { transform: scale(1.06); }
.game-card-body { padding: 1.15rem; display: flex; flex-direction: column; gap: 0.9rem; flex-grow: 1; justify-content: space-between; }
.game-card-meta { display: flex; align-items: center; justify-content: space-between; }
.game-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0; }
.game-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 999px; background: rgba(0,164,228,0.1); color: var(--accent-light); letter-spacing: 0.03em; }
.game-play-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.88rem; border-radius: var(--radius-sm); transition: background 0.2s; width: 100%; text-align: center; }
.game-play-btn:hover { background: var(--accent-light); }

/* ---- ARTICLE CONTENT STYLING (24betting Module System) ---- */
.subpage-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; padding: 3rem 0; }
.content-wrap { min-width: 0; background: var(--bg-surface); padding: 2.5rem; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 1.8rem; }
.breadcrumb a:hover { color: #fff; }
.art-head { margin-bottom: 2.2rem; }
.art-head h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 0.85rem; color: #fff; }
.art-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.85rem; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.art-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.quick-answer { background: rgba(0,164,228,0.05); border-left: 4px solid var(--accent); padding: 1.25rem 1.5rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 2.2rem; }
.quick-answer h2 { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.05em; }
.quick-answer p { font-size: 1rem; line-height: 1.6; color: var(--text); }
.art-hero { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); margin-bottom: 2.2rem; }
.art-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.jump-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.jump-chip { background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 0.45rem 1rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--muted); transition: all 0.2s; }
.jump-chip:hover { border-color: var(--accent); color: #fff; }

.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.fact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem; text-align: center; }
.fact-val { font-size: 1.25rem; font-weight: 800; color: var(--accent-light); margin-bottom: 0.15rem; }
.fact-lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.content-wrap h2 { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.025em; margin: 2.5rem 0 1.1rem; color: #fff; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.content-wrap p { margin-bottom: 1.4rem; color: var(--text); font-size: 1.02rem; line-height: 1.75; }
.content-wrap ul, .content-wrap ol { margin-left: 1.5rem; margin-bottom: 1.5rem; color: var(--text); }
.content-wrap li { margin-bottom: 0.6rem; }

/* Comparison Table */
.comparison-table-wrap { overflow-x: auto; margin: 2rem 0; border: 1px solid var(--border); border-radius: var(--radius-md); }
.comparison-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.95rem; }
.comparison-table th { background: var(--bg-card); padding: 1rem 1.25rem; font-weight: 700; border-bottom: 2px solid var(--border); color: #fff; }
.comparison-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.comparison-table tr:last-child td { border-bottom: none; }
.method-note { font-size: 0.78rem; color: var(--muted); font-style: italic; margin-top: -1rem; margin-bottom: 2rem; display: block; }

/* Sidebar */
.site-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-widget { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-card); }
.widget-title { font-size: 1.15rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; margin-bottom: 1.2rem; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.sidebar-cta-widget { background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%); border-color: rgba(0, 164, 228, 0.25); text-align: center; }
.sidebar-cta-widget .widget-title { border: none; padding: 0; margin-bottom: 0.8rem; }
.sidebar-cta-val { font-size: 2.2rem; font-weight: 900; color: var(--accent-light); margin: 0.5rem 0 1rem; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.sidebar-links a { font-size: 0.92rem; color: var(--muted); transition: color 0.2s; display: block; }
.sidebar-links a:hover { color: #fff; }

/* ---- FAQ ACCORDION ---- */
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; margin: 2rem 0; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question { width: 100%; min-height: 52px; background: transparent; border: none; padding: 0.75rem 1.25rem; font-family: inherit; font-size: 0.98rem; font-weight: 700; text-align: left; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-answer { display: none; padding: 1.15rem 1.25rem; border-top: 1px solid var(--border); color: var(--text); font-size: 0.95rem; line-height: 1.6; background: rgba(0,0,0,0.15); }
.faq-item.active .faq-answer { display: block; }

/* ---- FOOTER ---- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4.5rem 0 2rem; color: var(--muted); font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 2.5rem; margin-bottom: 3.5rem; }
.footer-col { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-h { font-size: 0.95rem; font-weight: 800; text-transform: uppercase; color: #fff; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.footer-col a { display: block; color: var(--muted); transition: color 0.2s; margin-bottom: 0.5rem; }
.footer-col a:hover { color: #fff; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 0.8rem; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.compliance-row { display: flex; align-items: center; gap: 1.25rem; }
.badge-18 { width: 34px; height: 34px; border: 2px solid var(--muted); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.72rem; }

/* ---- FLOATING WHATSAPP CTA ---- */
.floating-whatsapp {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  width: 58px; height: 58px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s var(--ease);
}
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp svg { width: 30px; height: 30px; fill: #fff; }

/* ---- RESPONSIVE MEDIA QUERIES ---- */
@media (max-width: 980px) {
  .subpage-layout { grid-template-columns: 1fr; }
  .site-header { height: auto; padding: 0.8rem 0; }
  .header-inner { flex-wrap: wrap; gap: 1rem; }
  .menu-toggle { display: block; }
  .main-nav { display: none; width: 100%; flex-direction: column; gap: 0.3rem; padding-top: 1rem; border-top: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .cmp-mega { position: static; width: 100%; grid-template-columns: 1fr; box-shadow: none; border: none; padding: 1rem 0 0 1rem; }
  .header-ctas { margin-left: auto; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { margin: 2rem auto 0; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .auth-container { padding: 1.5rem; }
}

/* Registration Popup CSS */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 11, 26, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.popup-content {
  background: #0f213e;
  border: 1px solid rgba(0, 164, 228, 0.2);
  border-radius: 12px;
  width: 900px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  animation: popupScale 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes popupScale {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.popup-body {
  display: flex;
  min-height: 520px;
}
.popup-banner-side {
  width: 45%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.popup-banner-overlay {
  background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 30%, rgba(10, 25, 47, 0.4) 100%);
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.popup-logo-wrap {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.popup-logo-wrap .logo-accent {
  color: #00a4e4;
}
.popup-banner-text h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: #fff;
}
.popup-banner-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.4;
}
.popup-bonus-badge {
  background: rgba(0, 164, 228, 0.15);
  border: 1px solid rgba(0, 164, 228, 0.4);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup-bonus-badge .bonus-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00a4e4;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0,164,228,0.3);
}
.popup-bonus-badge .bonus-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 5px;
}
.popup-form-side {
  width: 55%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-form-header h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}
.popup-form-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.popup-input-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}
.popup-input-group label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 5px;
  font-weight: 600;
}
.popup-input-group input, .popup-input-group select {
  background: rgba(10, 25, 47, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.popup-input-group input:focus, .popup-input-group select:focus {
  border-color: #00a4e4;
}
.popup-input-row {
  display: flex;
  gap: 10px;
}
.phone-country-select {
  width: 35%;
}
.phone-num-input {
  width: 65%;
}
.popup-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.popup-checkbox-group input {
  margin-top: 3px;
  cursor: pointer;
}
.popup-checkbox-group label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  cursor: pointer;
}
.popup-checkbox-group a {
  color: #00a4e4;
}
.popup-submit-btn {
  background: #00a4e4;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 164, 228, 0.3);
  transition: transform 0.2s, background 0.2s;
}
.popup-submit-btn:hover {
  background: #00b4fc;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .popup-body { flex-direction: column; }
  .popup-banner-side { display: none; }
  .popup-form-side { width: 100%; padding: 2rem; }
}
