/* ==========================================================================
   yenigirisadresi.co — Modern Dark & Neon Theme Stylesheet
   ========================================================================== */

:root {
  --bg-main: #0b1118;
  --bg-card: #121c27;
  --bg-card-hover: #172433;
  --bg-elevated: #1a293a;
  --bg-darker: #070c12;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 230, 118, 0.25);
  --border-gold-glow: rgba(251, 191, 36, 0.3);
  
  --primary: #00e676;
  --primary-hover: #00c853;
  --primary-dark: #004d40;
  --primary-glow: 0 0 20px rgba(0, 230, 118, 0.4);
  
  --gold: #fbbf24;
  --gold-hover: #f59e0b;
  --gold-glow: 0 0 20px rgba(251, 191, 36, 0.35);

  --telegram: #0088cc;
  --telegram-hover: #0077b5;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebc59;

  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-width: 1240px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #152332 0%, #0b1118 70%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 17, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo-text .brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-logo-text .brand-name span {
  color: var(--gold);
}

.site-logo-text .brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.nav-telegram {
  color: #29b6f6;
}
.nav-link.nav-telegram:hover {
  background: rgba(41, 182, 246, 0.1);
  color: #fff;
}

.nav-link.nav-whatsapp {
  color: #25d366;
}
.nav-link.nav-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #fff;
}

.header-promo-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid var(--border-gold-glow);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--gold-glow);
}

.header-promo-banner .promo-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.header-promo-banner .promo-text {
  display: flex;
  flex-direction: column;
}

.header-promo-banner .promo-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.header-promo-banner .promo-sub {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.3rem;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
  display: block;
}

.mobile-nav-content {
  position: absolute;
  right: 0;
  top: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav-drawer.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.mobile-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links .nav-link {
  font-size: 1.05rem;
  padding: 12px 14px;
}

/* ==========================================================================
   HERO IMAGE SLIDER
   ========================================================================== */
.hero-slider-section {
  padding: 24px 0 10px 0;
}

.slider-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: var(--bg-card);
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.slide-item {
  min-width: 100%;
  position: relative;
  display: block;
}

.slide-banner {
  position: relative;
  width: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px 60px;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(11,17,24,0.95) 0%, rgba(11,17,24,0.7) 45%, rgba(11,17,24,0.2) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.15);
  color: var(--gold);
  border: 1px solid var(--border-gold-glow);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.slide-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.5px;
}

.slide-title span {
  color: var(--gold);
  display: block;
}

.slide-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #cbd5e1;
}

.slide-features {
  display: flex;
  gap: 20px;
  margin: 6px 0;
}

.slide-feat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #0b1118;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--gold-glow);
  width: fit-content;
  margin-top: 8px;
}

.slide-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(18, 28, 39, 0.8);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--gold);
}

/* ==========================================================================
   PROVIDER LOGO STRIP
   ========================================================================== */
.provider-strip-section {
  padding: 20px 0;
}

.provider-strip-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(18, 28, 39, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.provider-strip-wrapper::-webkit-scrollbar {
  display: none;
}

.provider-item-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  min-width: 110px;
  height: 42px;
  transition: var(--transition);
}

.provider-item-logo:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.provider-item-logo img {
  max-height: 24px;
  max-width: 90px;
  object-fit: contain;
  filter: brightness(0.9) grayscale(0.2);
  transition: var(--transition);
}

.provider-item-logo:hover img {
  filter: brightness(1.2) grayscale(0);
}

.provider-all-btn {
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid var(--border-gold-glow);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   MAIN DUAL GRID (EN İYİ SİTELER & ÖNE ÇIKAN PROMOSYONLAR)
   ========================================================================== */
.home-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title .icon-crown {
  color: var(--gold);
}

.section-title .icon-gift {
  color: #f43f5e;
}

.section-title .icon-game {
  color: #06b6d4;
}

.section-title .icon-provider {
  color: #eab308;
}

.section-title .icon-guide {
  color: #a855f7;
}

.section-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.view-all-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.view-all-link:hover {
  text-decoration: underline;
  transform: translateX(3px);
}

/* ==========================================================================
   SITE CARDS GRID (DESKTOP 4 COL / INNER GRID 2 COL)
   ========================================================================== */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.site-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.site-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--primary-glow);
}

.site-card-media {
  position: relative;
  height: 150px;
  background: #1a2533;
  overflow: hidden;
}

.site-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.site-card:hover .site-card-media img {
  transform: scale(1.05);
}

.site-card-brand {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 17, 24, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.site-card-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-card-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.site-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.site-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.site-meta-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 600;
}

.meta-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.site-card-action {
  margin-top: auto;
}

.btn-site-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--primary);
  color: #0b1118;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 230, 118, 0.2);
  transition: var(--transition);
}

.btn-site-login:hover {
  background: var(--primary-hover);
  box-shadow: var(--primary-glow);
}

/* ==========================================================================
   PROMOTION CARDS LIST (SIDEBAR)
   ========================================================================== */
.promotions-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-side-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.promo-side-card:hover {
  border-color: var(--border-gold-glow);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.promo-side-media {
  position: relative;
  height: 110px;
  background: #1a2533;
}

.promo-side-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-side-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-site-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.promo-site-tag img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.promo-side-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.promo-side-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.promo-badge-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
}

.btn-promo-claim {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #0b1118;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.btn-promo-claim:hover {
  background: var(--gold-hover);
}

/* ==========================================================================
   POPULAR GAMES & POPULAR PROVIDERS
   ========================================================================== */
.home-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  margin-bottom: 40px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.game-media {
  position: relative;
  aspect-ratio: 16/10;
  background: #1e293b;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.game-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Providers Box Grid */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.provider-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  height: 68px;
}

.provider-box:hover {
  border-color: var(--border-gold-glow);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}

.provider-box img {
  max-height: 28px;
  max-width: 90px;
  object-fit: contain;
}

/* Guides list */
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.guide-item-link:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.guide-icon {
  color: #a855f7;
  font-size: 1.1rem;
}

.guide-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* ==========================================================================
   TELEGRAM & WHATSAPP CTA BOXES
   ========================================================================== */
.community-cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  gap: 20px;
}

.cta-box.cta-telegram {
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.05));
  border-color: rgba(0, 136, 204, 0.3);
}

.cta-box.cta-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.05));
  border-color: rgba(37, 211, 102, 0.3);
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.cta-telegram .cta-icon-wrap {
  background: var(--telegram);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.4);
}

.cta-whatsapp .cta-icon-wrap {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.cta-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.cta-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-btn {
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-telegram .cta-btn {
  background: var(--primary);
  color: #0b1118;
}

.cta-whatsapp .cta-btn {
  background: var(--primary);
  color: #0b1118;
}

/* ==========================================================================
   FEATURE BOXES & BIG BANNER
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.feat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feat-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.feat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Big Promo Banner */
.big-promo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid var(--border-gold-glow);
  padding: 40px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--gold-glow);
}

.big-promo-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
}

.big-promo-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.big-promo-title span {
  color: var(--gold);
}

.big-promo-tags {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
}

.big-promo-tags span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-big-play {
  background: var(--gold);
  color: #0b1118;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--gold-glow);
  white-space: nowrap;
}

/* ==========================================================================
   STATISTIC BOXES & NEWSLETTER
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.stat-card {
  background: rgba(18, 28, 39, 0.7);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--primary);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.newsletter-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.newsletter-icon {
  font-size: 1.8rem;
  color: var(--gold);
}

.newsletter-text {
  display: flex;
  flex-direction: column;
}

.newsletter-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.newsletter-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.newsletter-btn {
  background: var(--gold);
  color: #0b1118;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 30px 0;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.social-icon-btn:hover {
  color: #fff;
  border-color: var(--primary);
  background: rgba(0, 230, 118, 0.1);
}

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

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-quote-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
}

.quote-icon {
  font-size: 1.8rem;
  color: var(--gold);
}

.quote-text {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

.responsible-gaming {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-18 {
  border: 2px solid #ef4444;
  color: #ef4444;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 50%;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

/* ==========================================================================
   DETAIL PAGES (SITE, PROMOTION, GAME, GUIDE)
   ========================================================================== */
.detail-page-hero {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-top: 24px;
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.detail-cover {
  width: 240px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-header-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.detail-header-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-primary-action {
  background: var(--primary);
  color: #0b1118;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--primary-glow);
}

.btn-secondary-action {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
}

.detail-content-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #cbd5e1;
}

.detail-content-section h2, .detail-content-section h3 {
  color: #fff;
  margin: 20px 0 10px 0;
}

.detail-content-section p {
  margin-bottom: 14px;
}

/* Comments Section */
.comments-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 40px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
}

.comment-item {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.comment-author {
  font-weight: 700;
  color: #fff;
}

.comment-date {
  color: var(--text-dim);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
  .home-main-grid, .home-secondary-grid {
    grid-template-columns: 1fr;
  }
  .features-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   MOBILE BOTTOM APP BAR & RESPONSIVE IMPROVEMENTS
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 65px;
  }

  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(11, 17, 24, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  }

  .bottom-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
  }

  .bottom-tab-icon {
    font-size: 1.15rem;
    line-height: 1;
  }

  .bottom-tab.active, .bottom-tab:hover {
    color: var(--primary);
  }

  .bottom-tab.active .bottom-tab-icon {
    transform: scale(1.1);
  }

  .header-nav, .header-promo-banner {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .slide-banner {
    min-height: 280px;
    padding: 24px 20px;
  }
  .slide-title {
    font-size: 1.6rem;
  }
  .slide-subtitle {
    font-size: 0.95rem;
  }
  .sites-grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-cta-section {
    grid-template-columns: 1fr;
  }
  .features-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .big-promo-banner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .detail-page-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .detail-cover {
    width: 100%;
    height: 180px;
  }
  .detail-header-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .site-logo .brand-name {
    font-size: 1.15rem;
  }
  .brand-tagline {
    font-size: 0.65rem;
  }
  .site-card-top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .site-rating-box {
    align-self: flex-start;
  }
  .site-features-list {
    grid-template-columns: 1fr;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
}
