/* =============================================
   BigX11 — Pink Salmon Gradient Theme
   Color Palette: #F9A8C4 → #F07070 (diagonal)
   ============================================= */

:root {
  --pink:        #f0a0c0;
  --salmon:      #f07878;
  --deep-pink:   #e0507a;
  --rose:        #d63060;
  --light-pink:  #fce8f0;
  --pale:        #fff5f8;
  --white:       #ffffff;
  --off-white:   #fdf0f5;
  --grad-main:   linear-gradient(135deg, #f9a8c4 0%, #f09090 50%, #f07070 100%);
  --grad-hero:   linear-gradient(135deg, #fbb8cf 0%, #f49090 60%, #ef6868 100%);
  --grad-dark:   linear-gradient(135deg, #e04878 0%, #c83050 100%);
  --grad-card:   linear-gradient(135deg, #fff0f5 0%, #ffe4ee 100%);
  --grad-cta:    linear-gradient(135deg, #e85080 0%, #f07060 100%);
  --text-dark:   #2a0a14;
  --text-mid:    #5a1a2e;
  --text-light:  #8a3050;
  --text-white:  #ffffff;
  --text-muted:  #b06080;
  --shadow-pink: 0 8px 32px rgba(240,100,120,0.25);
  --shadow-soft: 0 4px 20px rgba(224,80,120,0.15);
  --shadow-card: 0 2px 16px rgba(220,80,120,0.12);
  --border-pink: rgba(240,120,140,0.3);
  --border-light: rgba(240,160,180,0.2);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body:    'Rajdhani', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--pale);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
img { max-width: 100%; }

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--grad-main);
  box-shadow: 0 2px 24px rgba(230,80,110,0.3);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 900;
  letter-spacing: 2px; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.logo span { color: #fff3a0; text-shadow: 0 0 12px rgba(255,240,100,0.6); }
.nav { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; flex-wrap: wrap; }
.nav a { color: rgba(255,255,255,0.92); font-size: 0.95rem; font-weight: 600; padding: 0.45rem 0.9rem; border-radius: 20px; }
.nav a:hover { background: rgba(255,255,255,0.2); color: #fff; }
.nav .btn-id { background: rgba(255,255,255,0.25); border: 1.5px solid rgba(255,255,255,0.5); color: #fff; padding: 0.45rem 1.2rem; border-radius: 20px; font-weight: 700; }
.nav .btn-id:hover { background: rgba(255,255,255,0.4); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.3rem; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav { display: none; flex-direction: column; padding: 0.8rem 1.5rem 1.2rem; gap: 0.3rem; background: rgba(220,60,90,0.15); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #fff; font-size: 1rem; font-weight: 600; padding: 0.55rem 0.8rem; border-radius: 8px; }
.mobile-nav a:hover { background: rgba(255,255,255,0.15); }

/* FLOATING */
.floating-btns { position: fixed; right: 1.4rem; bottom: 8rem; z-index: 999; display: flex; flex-direction: column; gap: 0.8rem; }
.float-btn { position: relative; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-pink); transition: transform 0.2s; }
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn-wa { background: #25d366; }
.float-btn-tg { background: #0088cc; }
.float-label { position: absolute; right: 60px; background: #2a0a14; color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.float-btn:hover .float-label { opacity: 1; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 50px; font-size: 1rem; font-weight: 700; letter-spacing: 0.5px; transition: all 0.25s ease; border: none; cursor: pointer; text-decoration: none; }
.btn:hover { transform: translateY(-2px); }
.btn-green { background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
.btn-green:hover { background: #20ba58; }
.btn-blue { background: #0088cc; color: #fff; box-shadow: 0 4px 16px rgba(0,136,204,0.35); }
.btn-blue:hover { background: #0070a8; }
.btn-gold { background: linear-gradient(135deg, #ffd700, #ffb800); color: #2a0a14; font-weight: 800; box-shadow: 0 4px 20px rgba(255,184,0,0.4); }
.btn-gold:hover { background: linear-gradient(135deg, #ffe033, #ffc800); box-shadow: 0 6px 24px rgba(255,184,0,0.55); }
.btn-red { background: var(--grad-dark); color: #fff; box-shadow: var(--shadow-pink); }
.btn-red:hover { opacity: 0.9; }

/* HERO */
.hero { position: relative; background: var(--grad-hero); overflow: hidden; padding: 5rem 2rem 4rem; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255,255,255,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 90% 20%, rgba(255,200,200,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-glow-left, .hero-glow-right { display: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.25); border: 1.5px solid rgba(255,255,255,0.5); color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 1.2rem; }
.hero-text h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1.2; text-shadow: 0 2px 16px rgba(0,0,0,0.2); margin-bottom: 1.2rem; }
.hero-text h1 .brand { color: #fff3a0; text-shadow: 0 0 20px rgba(255,240,100,0.5); }
.hero-text h1 .odds { color: rgba(255,255,255,0.9); font-style: italic; }
.hero-text p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* STATS */
.stats-bar { background: var(--grad-dark); padding: 1.8rem 2rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-item { padding: 0.5rem; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: #fff3a0; text-shadow: 0 0 12px rgba(255,240,100,0.4); }
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; margin-top: 0.2rem; }

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section:nth-child(even) { background: var(--off-white); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; }
.text-gold { color: var(--deep-pink); }
.section-title p { color: var(--text-light); font-size: 1.05rem; }
.title-line { width: 60px; height: 4px; background: var(--grad-main); border-radius: 2px; margin: 1rem auto 0; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.feature-card { background: var(--white); border: 1.5px solid var(--border-pink); border-radius: var(--radius-lg); padding: 2rem; text-align: center; box-shadow: var(--shadow-card); transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-main); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pink); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; letter-spacing: 0.5px; }
.feature-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }

/* HOW TO */
.how-to { background: var(--light-pink) !important; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.5rem; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; text-align: center; box-shadow: var(--shadow-soft); border: 1.5px solid var(--border-light); transition: transform 0.25s; }
.step-card:hover { transform: translateY(-4px); }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-main); color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; box-shadow: 0 4px 16px rgba(230,80,120,0.35); }
.step-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; }
.step-card p { color: var(--text-mid); font-size: 0.92rem; }

/* GAMES */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 1.2rem; }
.game-card { background: var(--white); border: 1.5px solid var(--border-pink); border-radius: var(--radius-lg); padding: 1.8rem 1rem; text-align: center; box-shadow: var(--shadow-card); transition: all 0.25s; position: relative; overflow: hidden; }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pink); background: var(--light-pink); }
.game-icon { font-size: 2.8rem; display: block; margin-bottom: 0.7rem; }
.game-card h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.live-badge { display: inline-block; background: #ff4444; color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; margin-top: 0.4rem; animation: livePulse 2s infinite; }
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; }
.trust-card { background: var(--grad-card); border: 1.5px solid var(--border-pink); border-radius: var(--radius-lg); padding: 2rem; text-align: center; box-shadow: var(--shadow-card); transition: transform 0.25s; }
.trust-card:hover { transform: translateY(-4px); }
.trust-icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }
.trust-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.trust-card p { color: var(--text-mid); font-size: 0.9rem; }

/* FAQ */
.faq { background: var(--light-pink) !important; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { background: var(--white); border: 1.5px solid var(--border-pink); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.faq-q { padding: 1.1rem 1.4rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1rem; color: var(--text-dark); transition: background 0.2s; user-select: none; }
.faq-q:hover { background: var(--light-pink); }
.faq-q.active { background: var(--grad-main); color: #fff; }
.faq-q.active .faq-arrow { color: #fff; transform: rotate(180deg); }
.faq-arrow { color: var(--deep-pink); font-size: 0.75rem; transition: transform 0.25s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; padding: 0 1.4rem; }
.faq-a a { color: var(--deep-pink); text-decoration: underline; }
.faq-a.open { max-height: 300px; padding: 1rem 1.4rem 1.2rem; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border: 1.5px solid var(--border-pink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.25s, box-shadow 0.25s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-pink); }
.blog-img { background: var(--grad-main); height: 100px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-content { padding: 1.4rem; }
.blog-tag { display: inline-block; background: var(--light-pink); color: var(--deep-pink); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 12px; margin-bottom: 0.7rem; letter-spacing: 0.5px; }
.blog-content h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-content p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 0.8rem; line-height: 1.5; }
.blog-read-more { color: var(--deep-pink); font-weight: 700; font-size: 0.88rem; }
.blog-read-more:hover { color: var(--rose); }

/* CTA */
.cta-section { background: var(--grad-cta); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255,255,255,0.12) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3.5vw,2.4rem); color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.2); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section h2 .text-gold { color: #fff3a0; }
.cta-section p { color: rgba(255,255,255,0.92); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; position: relative; z-index: 1; }
.cta-section .btn { position: relative; z-index: 1; }

/* FOOTER */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.8); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: #fff; display: block; margin-bottom: 0.8rem; }
.footer-brand .logo span { color: #ffd700; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.65); max-width: 240px; }
.social-icons { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.8); transition: all 0.2s; }
.social-icon:hover { background: var(--deep-pink); border-color: var(--deep-pink); color: #fff; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: #fff; letter-spacing: 1px; margin-bottom: 1rem; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; }
.footer-bottom a { color: var(--pink); }
.disclaimer { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 0.8rem 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.disclaimer a { color: var(--pink); }

/* CHAT OVERRIDE */
#c247-chat-btn { background: var(--deep-pink) !important; box-shadow: 0 4px 20px rgba(224,80,120,0.6) !important; }
.c247-chat-header { background: linear-gradient(135deg, #f9a8c4, #f07070) !important; }
.c247-chat-avatar { color: var(--deep-pink) !important; }
.c247-chat-opt { background: var(--deep-pink) !important; }
.c247-chat-opt:hover { background: var(--rose) !important; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .header-inner { padding: 0.8rem 1.2rem; }
  .hero { padding: 3rem 1.2rem; }
  .section { padding: 3rem 1.2rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 0.8rem; }
  .stat-num { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2,1fr); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .cta-section { padding: 3rem 1.2rem; }
}
