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

/* --- Design Tokens --- */
:root {
  --font-sans: 'Outfit', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;

  /* Colors */
  --bg-deep: #07090e;
  --bg-card: rgba(17, 22, 34, 0.75);
  --bg-card-hover: rgba(26, 32, 49, 0.9);
  --border-glow: rgba(0, 242, 254, 0.15);
  
  --accent-gold: #ffb703;
  --accent-gold-glow: rgba(255, 183, 3, 0.4);
  --accent-green: #00ff87;
  --accent-green-glow: rgba(0, 255, 135, 0.45);
  --accent-cyan: #00f2fe;
  --accent-cyan-glow: rgba(0, 242, 254, 0.45);
  --accent-purple: #7000ff;

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --shadow-neon: 0 0 15px rgba(0, 242, 254, 0.25);
  --shadow-gold: 0 0 15px rgba(255, 183, 3, 0.25);
  --shadow-green: 0 0 15px rgba(0, 255, 135, 0.25);

  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 16px;
}

/* --- Reset & Global --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffe066 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green {
  background: linear-gradient(135deg, #a8ff78 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Layout & Structure --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-cyan);
}

.logo-badge {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: var(--shadow-neon);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 16px;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #0077ff 100%);
  color: #000;
  font-weight: 700;
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.5);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8c00 100%);
  color: #000;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 183, 3, 0.5);
  color: #000;
}

.btn-green {
  background: linear-gradient(135deg, var(--accent-green) 0%, #00b050 100%);
  color: #000;
  font-weight: 700;
  box-shadow: var(--shadow-green);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 135, 0.55);
  color: #000;
}

.btn-outline-green {
  background: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
}

.btn-outline-green:hover {
  background: rgba(0, 255, 135, 0.1);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 12px;
}

/* --- Cards (Glassmorphism) --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

/* --- Grid Sections --- */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 8px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Comparison Matrix (Table / Hub Listings) --- */
.bookmaker-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.bookmaker-card {
  display: grid;
  grid-template-columns: 80px 1.5fr 1.2fr 1fr 1.5fr;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-radius: var(--border-radius);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.bookmaker-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: var(--transition-smooth);
}

.bookmaker-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(1.01);
}

.bookmaker-card.featured::before {
  background: linear-gradient(180deg, var(--accent-gold), #ff8c00);
}

.bookmaker-card.featured {
  border-color: rgba(255, 183, 3, 0.2);
}

.card-rank {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bookmaker-card.featured .card-rank {
  color: var(--accent-gold);
  background: rgba(255, 183, 3, 0.05);
  border-color: rgba(255, 183, 3, 0.15);
}

.card-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo-frame {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #10141e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
}

.brand-info h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: var(--accent-gold);
  font-size: 14px;
  letter-spacing: -2px;
}

.rating-value {
  font-weight: 700;
  font-size: 15px;
}

.card-bonus {
  display: flex;
  flex-direction: column;
}

.bonus-title {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.bonus-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-green);
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.feature-tag i {
  color: var(--accent-cyan);
  font-size: 12px;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-gold);
  color: #000;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom-left-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* --- Brand Logo Custom Colors --- */
.logo-hollywoodbets {
  background: linear-gradient(135deg, #7000ff 0%, #40008b 100%);
  color: #fff;
  border-color: #7000ff;
}
.logo-easybet {
  background: linear-gradient(135deg, #ff007f 0%, #99004c 100%);
  color: #fff;
  border-color: #ff007f;
}
.logo-playabets {
  background: linear-gradient(135deg, #00ff87 0%, #006633 100%);
  color: #000;
  border-color: #00ff87;
}
.logo-apexbets {
  background: linear-gradient(135deg, #00f2fe 0%, #004cff 100%);
  color: #fff;
  border-color: #00f2fe;
}
.logo-lulabet {
  background: linear-gradient(135deg, #ff6b00 0%, #002244 100%);
  color: #fff;
  border-color: #ff6b00;
}

/* --- Game Review Section --- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.game-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.1);
}

.game-media {
  height: 180px;
  background: #131924;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(7, 9, 14, 0.95) 100%);
  z-index: 1;
}

.game-logo-art {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.logo-art-aviator {
  color: #ff3b30;
  background: linear-gradient(to right, #ff3b30, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-art-spina {
  color: #ffb703;
  background: linear-gradient(to right, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-art-roulette {
  color: #00ff87;
  background: linear-gradient(to right, #00ff87, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-art-pragmatic {
  color: #ff6b00;
  background: linear-gradient(to right, #ff6b00, #ff0055);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-art-nolimit {
  color: #ffd700;
  background: linear-gradient(to right, #ffd700, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-card-content {
  padding: 24px;
  z-index: 2;
  position: relative;
}

.game-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.game-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent-cyan);
}

.game-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.game-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.game-meta-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.meta-pill {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* --- YouTube & Giveaways Section --- */
.youtube-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0d121d 50%, var(--bg-deep) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.youtube-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.yt-info-pane h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.yt-channel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff0000;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.yt-channel-tag i {
  font-size: 20px;
}

.yt-info-pane p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 30px;
}

.yt-perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.yt-perk {
  display: flex;
  gap: 16px;
}

.yt-perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff3b30;
  font-size: 18px;
  flex-shrink: 0;
}

.yt-perk-desc h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.yt-perk-desc p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- YouTube Channels Grid & Ticker Styling --- */
.yt-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0 40px;
}

.yt-channel-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.yt-channel-card:hover {
  background: rgba(255, 0, 0, 0.03);
  border-color: rgba(255, 0, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.08);
}

.yt-channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000 0%, #7000ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.yt-channel-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.ticker-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  display: inline-block;
  animation: tickerGlow 1.5s infinite ease-in-out;
}

.ticker-count {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 700;
}

.g-ytsubscribe-container {
  margin: 8px 0 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@keyframes tickerGlow {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

.video-mockup {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #161b26;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #1e122d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
  transition: var(--transition-smooth);
  border: none;
  z-index: 2;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
}

.video-play-btn i {
  margin-left: 6px;
}

.video-overlay-text {
  margin-top: 20px;
  font-weight: 700;
  font-size: 18px;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* --- Giveaway Banner (Top or Banner Widget) --- */
.giveaway-banner {
  background: linear-gradient(135deg, #1a0f30 0%, #0c0817 100%);
  border: 1px solid rgba(112, 0, 255, 0.3);
  border-radius: var(--border-radius);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(112, 0, 255, 0.15);
}

.giveaway-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.giveaway-content {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

.giveaway-badge {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ff5e00 100%);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-gold);
}

.giveaway-text h3 {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--accent-gold);
}

.giveaway-text p {
  color: var(--text-secondary);
  font-size: 15px;
}

.giveaway-action {
  z-index: 2;
}

/* --- Social Media Links Grid --- */
.socials-section {
  padding: 80px 0;
  text-align: center;
}

.socials-section h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.socials-section p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 40px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.social-card {
  padding: 24px;
  border-radius: var(--border-radius);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.social-card i {
  font-size: 32px;
  transition: var(--transition-smooth);
}

.social-card span {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

/* Social Specific Hover Effects */
.social-card.fb:hover {
  border-color: #1877f2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
  transform: translateY(-4px);
}
.social-card.fb:hover i { color: #1877f2; }
.social-card.fb:hover span { color: #fff; }

.social-card.ig:hover {
  border-color: #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.2);
  transform: translateY(-4px);
}
.social-card.ig:hover i { color: #e1306c; }
.social-card.ig:hover span { color: #fff; }

.social-card.tt:hover {
  border-color: #ff0050;
  box-shadow: 0 0 20px rgba(255, 0, 80, 0.2);
  transform: translateY(-4px);
}
.social-card.tt:hover i { color: #ff0050; }
.social-card.tt:hover span { color: #fff; }

.social-card.dc:hover {
  border-color: #5865f2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
  transform: translateY(-4px);
}
.social-card.dc:hover i { color: #5865f2; }
.social-card.dc:hover span { color: #fff; }

/* --- Footer & Compliance --- */
footer {
  background: #040508;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 15px;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-compliance {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.compliance-badge {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #ff3b30;
  color: #ff3b30;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compliance-text h4 {
  color: #ff3b30;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.compliance-text p {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* --- Review Pages Layout (Inner pages) --- */
.page-header {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

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

.header-logo-frame {
  width: 96px;
  height: 96px;
  border-radius: var(--border-radius);
  font-size: 36px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-details h1 {
  font-size: 40px;
  margin-bottom: 6px;
}

.header-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-rating .stars {
  font-size: 18px;
}

.header-actions {
  display: flex;
  gap: 16px;
}

.review-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

.review-content section {
  margin-bottom: 50px;
}

.review-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-content p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Pros and Cons Box */
.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.pros-box, .cons-box {
  border-radius: var(--border-radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.pros-box {
  border-left: 4px solid var(--accent-green);
}

.cons-box {
  border-left: 4px solid #ff3b30;
}

.pros-box h3, .cons-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.pros-box h3 { color: var(--accent-green); }
.cons-box h3 { color: #ff3b30; }

.pros-cons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pros-cons-list li i {
  margin-top: 4px;
}

.pros-box i { color: var(--accent-green); }
.cons-box i { color: #ff3b30; }

/* Review Sidebar Widgets */
.sidebar-widgets {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.widget {
  border-radius: var(--border-radius);
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.widget h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.rating-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rating-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
}

.rating-label span:last-child {
  font-weight: 700;
  color: #fff;
}

.rating-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.rating-progress {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 16px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-detail h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.step-detail p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question i {
  transition: var(--transition-smooth);
  color: var(--accent-cyan);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  display: none;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Modal Dialogs */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #111622;
  border: 1px solid rgba(112, 0, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--accent-gold);
}

.modal-content p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

/* --- Keyframe Animations --- */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Media Queries (Responsive) --- */
@media (max-width: 1024px) {
  .youtube-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .yt-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-layout {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bookmaker-card {
    grid-template-columns: 60px 1fr 1fr 1fr;
  }
  .bookmaker-card .card-features {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 16px;
  }
  .grid-2, .grid-3, .grid-4, .yt-channels-grid {
    grid-template-columns: 1fr;
  }
  .bookmaker-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 30px 24px;
  }
  .card-rank {
    margin: 0 auto;
  }
  .card-brand {
    flex-direction: column;
  }
  .rating-container {
    justify-content: center;
  }
  .giveaway-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 30px 20px;
  }
  .giveaway-content {
    flex-direction: column;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .page-header-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .header-brand-info {
    flex-direction: column;
  }
  .header-rating {
    justify-content: center;
  }
  .pros-cons-container {
    grid-template-columns: 1fr;
  }
}
