:root {
  --bg-color: #050505;
  --bg-gradient: radial-gradient(circle at 50% -20%, #1a3a32 0%, #050505 45%);
  --text: #ffffff;
  --muted: #a0a0a0;
  --accent: #2d8a74;
  --accent-glow: rgba(45, 138, 116, 0.6);
  --accent-hover: #3aa88d;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  --glass-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 24px;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(45, 138, 116, 0.15);
}
.bonus-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-areas: "main aside";
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}
.bonus-main .bonus-grid {
  margin: 0;
}
.bonus-main { grid-area: main; }
.month-aside { grid-area: aside; }
.month-aside .month-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.month-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #eaeaea;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  transition: all .2s ease;
}
.month-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(45,138,116,0.4);
}
.month-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}
.ml-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ml-title {
  font-weight: 700;
  font-size: 0.95rem;
}
.ml-sub {
  color: var(--muted);
  font-size: 0.8rem;
}
.ml-arrow {
  margin-left: auto;
  color: var(--accent);
  font-weight: 700;
  transition: transform .2s ease;
}
.month-link:hover .ml-arrow {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .bonus-layout { 
    grid-template-columns: 1fr; 
    grid-template-areas: 
      "aside"
      "main";
  }
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  margin: 0;
}

/* Animations */
@keyframes float {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes glow {
  0% { box-shadow: 0 0 20px rgba(45, 138, 116, 0.1); }
  50% { box-shadow: 0 0 40px rgba(45, 138, 116, 0.3); }
  100% { box-shadow: 0 0 20px rgba(45, 138, 116, 0.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

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

main {
  flex: 1;
  padding-top: 60px;
  padding-bottom: 40px;
}

/* Header & Nav */
header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

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

.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.9;
}

.menu {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: nowrap;
}

.menu a {
  text-decoration: none;
  color: #b0b0b0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  letter-spacing: -0.01em;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
}

.menu a:not(.request-link):hover, .menu a:not(.request-link).active {
  color: #fff;
  transform: translateX(6px);
}

.menu a:not(.request-link) {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  padding: 10px 16px;
  color: #d0d0d0;
}
header .menu a:not(.request-link):hover {
  transform: none;
  color: #fff;
  border-color: var(--accent);
  background: rgba(45,138,116,0.18);
  box-shadow: 0 8px 22px rgba(0,0,0,0.4), 0 0 20px rgba(45,138,116,0.15);
}
header .menu a:not(.request-link).active {
  transform: none;
  color: #fff;
  border-color: var(--accent);
  background: rgba(45,138,116,0.22);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 24px rgba(45,138,116,0.2);
}
header .menu a:not(.request-link)::before {
  display: none;
}

.menu a:not(.request-link)::before {
  content: '→';
  position: absolute;
  left: -5px;
  opacity: 0;
  transition: all 0.2s;
  color: var(--accent);
  font-weight: 700;
}

.menu a:not(.request-link):hover::before {
  opacity: 1;
}

.request-link {
  color: var(--accent) !important;
  font-weight: 600 !important;
  text-shadow: 0 0 20px rgba(45, 138, 116, 0.3);
}

/* Header Specific Request Link Styling */
header .request-link {
  background: rgba(45, 138, 116, 0.15);
  border: 1px solid rgba(45, 138, 116, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(45, 138, 116, 0.1);
  margin-left: 8px;
}

header .request-link:hover {
  background: rgba(45, 138, 116, 0.25);
  border-color: var(--accent);
  color: #fff !important;
  box-shadow: 0 0 30px rgba(45, 138, 116, 0.3);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(45, 138, 116, 0.5);
}

.request-link:hover {
  color: var(--accent-hover) !important;
  text-shadow: 0 0 25px rgba(58, 168, 141, 0.5);
}

/* Helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

.content-narrow {
  max-width: 600px;
  margin: 40px auto;
}

.premium-card {
  background: radial-gradient(circle at top center, rgba(30, 30, 30, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 100px rgba(45, 138, 116, 0.05);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(45, 138, 116, 0.03) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.premium-card .btn-text {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.premium-card .btn-text:hover {
  color: #fff;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.premium-card h1 {
  font-size: 3rem;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.premium-card p.lede {
  color: #b0b0b0;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.premium-card p.lede .muted {
  color: #666;
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.invite-badge {
  display: inline-block;
  background: rgba(45, 138, 116, 0.1);
  color: var(--accent);
  border: 1px solid rgba(45, 138, 116, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(45, 138, 116, 0.1);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.feature-list li {
  margin-bottom: 12px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
}

.feature-list li span {
  color: var(--accent);
  font-weight: bold;
}

.feature-list li .error-icon {
  color: #ff4d4d;
}

/* Hero Section */
.hero {
  position: relative; /* Ensure absolute children are positioned relative to this */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  margin-top: 60px;
  align-items: center;
}

/* Background Graph Animation (Subtle) */
.hero-graph-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 300px;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.06; /* 3-8% opacity as requested */
  pointer-events: none;
  overflow: hidden;
}

.hero-graph-svg {
  width: 200%; /* Wider than container for scrolling */
  height: 100%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  animation: graphScroll 20s linear infinite;
}

@keyframes graphScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.hero-small {
  text-align: center;
  margin: 60px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-small .headline {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hero-small .lede {
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.25rem;
}

.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(45, 138, 116, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(45, 138, 116, 0.2);
}

.headline {
  font-size: 3.75rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-small .headline {
  font-size: 3rem;
}

.lede {
  font-size: 1.2rem;
  color: #d0d0d0;
  margin-bottom: 32px;
  max-width: 540px;
  font-weight: 400;
  line-height: 1.5;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-aside {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(45, 138, 116, 0.1);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  will-change: transform;
  transform: translate3d(0, 0, 0); /* Force hardware acceleration */
}

.hero-aside::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.hero-aside::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 138, 116, 0.3), transparent);
}

.hero-aside-content {
  position: relative;
  z-index: 1;
}

.badge-container {
  margin-bottom: 20px;
}

.premium-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #1a3a32 100%);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(45, 138, 116, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
}

.analysis-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.link-arrow:hover {
  gap: 10px;
  color: var(--accent-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58, 168, 141, 0.4);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Premium Button Special */
#start-application-btn {
  background: #369a84;
  color: #ffffff;
  border: none;
  box-shadow: 0 0 20px rgba(54, 154, 132, 0.4);
  font-weight: 700;
  text-transform: none;
  font-size: 1.1rem;
  letter-spacing: normal;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  padding: 18px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#start-application-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

#start-application-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(54, 154, 132, 0.6);
  background: #3bb096;
}

#start-application-btn:hover::after {
  transform: translateX(100%);
}

/* Content Card (General) */
.content-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-margin-top: 120px;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.content-card:hover {
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Bonus Grid Redesign */
.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 60px;
}

.bonus-card {
  background: radial-gradient(circle at top right, rgba(255,255,255,0.04), rgba(10,10,10,0.4));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 450px;
  width: 100%;
  text-decoration: none; /* Ensure no underline if it's an anchor */
  color: inherit; /* Ensure text color is preserved */
  cursor: pointer;
}
.bonus-card.featured {
  border-color: rgba(45, 138, 116, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(45, 138, 116, 0.2);
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), rgba(10,10,10,0.45));
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s;
}

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 138, 116, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(45, 138, 116, 0.15);
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), rgba(10,10,10,0.5));
}

.bonus-card:hover::before {
  opacity: 0.5;
}

.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.new-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(135deg, #3aa88d 0%, #1a3a32 100%);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 18px rgba(45,138,116,0.35);
}

.bonus-logo {
  width: 64px;
  height: 64px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.bonus-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.bonus-card:hover .bonus-logo {
  transform: scale(1.05) rotate(-3deg);
}

.bonus-rating {
  color: #fbbf24;
  letter-spacing: 4px;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
}

.bonus-content {
  position: relative;
  z-index: 1;
}

.bonus-content h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.bonus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e8f6f2;
  background: rgba(45, 138, 116, 0.15);
  border: 1px solid rgba(45, 138, 116, 0.35);
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.bonus-offer {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #e0e0e0;
  line-height: 1.4;
}

.bonus-offer .highlight {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.3rem;
  text-shadow: 0 0 20px rgba(45, 138, 116, 0.4);
}

.bonus-terms {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-style: italic;
}

.bonus-features {
  list-style: none;
  margin-bottom: 36px;
}

.bonus-features li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  color: #d0d0d0;
  font-weight: 500;
}

.bonus-features li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 900;
  background: rgba(45, 138, 116, 0.15);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  top: 2px;
}

.bonus-action {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.bonus-action .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--accent) 0%, #3aa88d 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(45, 138, 116, 0.3);
}

.bonus-action .btn:hover {
  box-shadow: 0 8px 30px rgba(45, 138, 116, 0.5);
  transform: translateY(-2px);
}

.terms-link {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 16px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.terms-link:hover {
  opacity: 1;
}

/* Frontpage preview */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.preview-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.05), rgba(10,10,10,0.3));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}
.preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45,138,116,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 30px rgba(45,138,116,0.12);
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.07), rgba(10,10,10,0.36));
}
.preview-title {
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #ffffff 0%, #cfcfcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.preview-text {
  color: var(--muted);
  font-size: 0.95rem;
}
.preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.preview-list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.preview-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.preview-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.preview-thumbs img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.preview-card:hover .preview-thumbs img:nth-child(1) { transform: translateY(-2px); }
.preview-card:hover .preview-thumbs img:nth-child(2) { transform: translateY(-4px); }
.preview-card:hover .preview-thumbs img:nth-child(3) { transform: translateY(-2px); }
.preview-card:hover .link-arrow { gap: 10px; }
@media (max-width: 900px) {
  .preview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .preview-grid { grid-template-columns: 1fr; }
  .preview-thumbs img { height: 56px; }
}

.month-section {
  margin-top: 12px;
}
.month-section.content-card {
  padding: 16px;
  border-radius: 16px;
}
.month-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
  margin-top: 8px;
}
.month-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px;
  background: radial-gradient(circle at 10% 0%, rgba(255,255,255,0.05), rgba(10,10,10,0.28));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  min-height: 92px;
}
.month-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45,138,116,0.4);
  box-shadow: 0 8px 22px rgba(0,0,0,0.55), 0 0 20px rgba(45,138,116,0.1);
  background: radial-gradient(circle at 10% 0%, rgba(255,255,255,0.07), rgba(10,10,10,0.36));
}
.month-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}
.month-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  text-align: center;
}
.month-title {
  font-weight: 800;
  font-size: 0.92rem;
}
.month-sub {
  color: var(--muted);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .month-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
/* Premium Info Content */
.info-section {
  position: relative;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.text-highlight {
  color: var(--accent);
  font-weight: 600;
}

.text-accent {
  color: var(--accent);
}

.lede-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
}

.feature-block {
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.clean-list, .red-list, .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.95rem;
}

.clean-list li:last-child {
  border-bottom: none;
}

.red-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.red-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ff4d4d;
  font-weight: bold;
}

.check-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.final-call {
  margin-top: 24px;
  padding: 20px;
  background: rgba(45, 138, 116, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(45, 138, 116, 0.1);
  text-align: center;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
}
.faq-q {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.faq-a {
  color: var(--muted);
}

/* Result gallery */
.win-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.win-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
}
.win-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}
.win-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .win-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .win-item img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .win-gallery {
    grid-template-columns: 1fr;
  }
  .win-item img {
    height: 200px;
  }
}

/* Utilities */
.mb-10 { margin-bottom: 40px; }
.mb-6 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 16px; }
.mt-4 { margin-top: 16px; }
.mt-2 { margin-top: 8px; }
.italic { font-style: italic; }
.small { font-size: 0.9rem; }

/* Responsible Gaming Footer */
.responsible-gaming-footer {
  text-align: center;
  padding: 60px 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.responsible-gaming-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.rg-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.rg-logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.rg-logo-text:hover {
  opacity: 1;
}

.rg-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  opacity: 0.7;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(to bottom, #050505, #000000);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 100px 0 40px;
  margin-top: 120px;
  position: relative;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}

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

.brand-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Removed grid styling for social section */

.brand-logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.footer-brand .brand-text {
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.footer-tagline {
  color: #888;
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  position: relative;
  display: inline-block; /* Ensure transforms work well */
}

.footer-nav a:not(.footer-cta):hover {
  color: #fff;
  transform: translateX(6px);
}

.footer-nav a:not(.footer-cta)::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.2s;
  color: var(--accent);
  font-weight: 700;
}

.footer-nav a:not(.footer-cta):hover::before {
  opacity: 1;
}

.footer-cta {
  color: var(--accent) !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.footer-cta::after {
  content: '→';
  transition: transform 0.2s;
}

.footer-cta:hover::after {
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.social-icon:hover img {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.legal-links {
  display: flex;
  gap: 16px;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.legal-separator {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
  user-select: none;
}

.legal-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  color: #666;
  font-size: 0.8rem;
}



/* Application Form */
.application-form {
  background: rgba(0,0,0,0.3);
  border-radius: 20px;
  padding: 40px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-progress {
  margin-bottom: 32px;
}

.progress-track {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.4s ease;
}

.progress-text {
  text-align: right;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.form-question {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.3;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.2s;
}

.radio-option:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.radio-option input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}

.option-content {
  display: flex;
  flex-direction: column;
}

.option-title {
  font-weight: 500;
  color: #e0e0e0;
}

.option-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.form-actions .next-step {
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 10px;
  padding: 14px 32px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(45, 138, 116, 0.3);
  letter-spacing: 0.02em;
}

.form-actions .next-step:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 138, 116, 0.5);
}

.form-actions .back-step {
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-actions .back-step:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.95rem;
  padding: 10px 20px;
  transition: color 0.2s;
  font-weight: 500;
}

.btn-text:hover {
  color: var(--text);
}

.btn-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58, 168, 141, 0.4);
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 18px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 2px rgba(45, 138, 116, 0.2);
}

.form-input::placeholder {
  color: var(--muted);
  opacity: 0.4;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 4px;
}

/* Success State */
.application-success {
  text-align: center;
  padding: 48px;
  background: var(--glass-card);
  border-radius: 20px;
  border: 1px solid rgba(45, 138, 116, 0.3);
  box-shadow: 0 0 40px rgba(45, 138, 116, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(45, 138, 116, 0.2);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff;
}

/* Policy Page */
.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #fff;
}

.policy-section p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.policy-section ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--muted);
}

.policy-section li {
  margin-bottom: 8px;
}

/* Read More Button Styling */
#read-more-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 16px;
  width: auto;
  min-width: 280px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.01em;
}

#read-more-btn:hover {
  background: rgba(45, 138, 116, 0.15);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 138, 116, 0.15);
  text-shadow: 0 0 10px rgba(45, 138, 116, 0.4);
}

#read-more-btn svg {
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
}

#read-more-btn:hover svg {
  opacity: 1;
  stroke: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .headline { font-size: 2.5rem; }
    .hero-small .headline { font-size: 2.5rem; }
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-top: 20px;
    }

    .hero-actions {
        justify-content: center;
    }
    
    .nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .menu {
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: center;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .menu a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .premium-card {
        padding: 32px 20px;
    }
  /* Ensure read-more link is visible on mobile */
  #read-more-container {
      margin-top: 6px !important;
      margin-bottom: 12px !important;
  }
  #read-more-btn {
      min-width: 0;
      padding: 12px 20px;
      font-size: 0.95rem;
  }
    
    .premium-card h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 24px;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 16px;
        align-items: stretch;
    }
    
    .form-actions button {
        width: 100%;
    }

    /* Footer */
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 48px;
    }
    
    .brand-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-tagline {
        text-align: center;
    }
    
    .footer-links {
        width: 100%;
        align-items: center;
        gap: 40px;
    }

    .footer-section {
        align-items: center;
        width: 100%;
    }

    .footer-nav {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Single Bonus Page */
.single-bonus-page {
  padding-top: 40px;
  padding-bottom: 20px;
}

.single-bonus-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 0;
}

.single-bonus-card {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.back-to-bonuses {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 32px;
}

.back-to-bonuses:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(45, 138, 116, 0.15);
  transform: translateX(-4px);
  box-shadow: 0 4px 20px rgba(45, 138, 116, 0.15);
}

.back-to-bonuses-bottom {
  margin-bottom: 0;
  margin-top: 32px;
}

@media (max-width: 768px) {
    .single-bonus-page {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .single-bonus-wrapper {
        padding: 8px 0 16px;
        min-height: auto;
    }

    .single-bonus-card {
        max-width: 100%;
        padding: 20px 18px;
    }

    .single-bonus-card .bonus-header {
        margin-bottom: 12px;
    }

    .single-bonus-card .bonus-logo {
        width: 48px;
        height: 48px;
    }

    .single-bonus-card .bonus-content h3 {
        margin-bottom: 6px;
        font-size: 1.25rem;
    }

    .single-bonus-card .bonus-offer {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .single-bonus-card .bonus-offer .highlight {
        font-size: 1.05rem;
    }

    .single-bonus-card .bonus-terms {
        font-size: 0.8rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .single-bonus-card .bonus-features {
        margin-bottom: 16px;
    }

    .single-bonus-card .bonus-features li {
        font-size: 0.85rem;
        margin-bottom: 6px;
        padding-left: 26px;
    }

    .single-bonus-card .bonus-features li::before {
        width: 17px;
        height: 17px;
        font-size: 0.65rem;
    }

    .single-bonus-card .bonus-action .btn {
        padding: 14px;
        font-size: 1rem;
    }

    .single-bonus-card .terms-link {
        margin-top: 10px;
        font-size: 0.65rem;
    }

    .back-to-bonuses {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 12px;
    }

    .back-to-bonuses-bottom {
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .single-bonus-page {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .single-bonus-wrapper {
        padding: 4px 0 12px;
    }

    .single-bonus-card {
        padding: 16px 14px;
    }

    .single-bonus-card .bonus-header {
        margin-bottom: 8px;
    }

    .single-bonus-card .bonus-logo {
        width: 40px;
        height: 40px;
    }

    .single-bonus-card .bonus-content h3 {
        margin-bottom: 4px;
        font-size: 1.15rem;
    }

    .single-bonus-card .bonus-offer {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .single-bonus-card .bonus-terms {
        font-size: 0.75rem;
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .single-bonus-card .bonus-features {
        margin-bottom: 12px;
    }

    .single-bonus-card .bonus-features li {
        font-size: 0.8rem;
        margin-bottom: 4px;
        padding-left: 22px;
    }

    .single-bonus-card .bonus-features li::before {
        width: 15px;
        height: 15px;
        font-size: 0.6rem;
    }

    .single-bonus-card .bonus-action .btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .back-to-bonuses {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 8px;
    }
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.subnav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 20px;
}
.subnav-inner {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 12px 0;
}
.subnav a {
  text-decoration: none;
  color: #b0b0b0;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  transition: all .2s;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
  line-height: 1.1;
}
.subnav a:hover {
  color: #fff;
  transform: translateY(-1px);
}
.subnav a.active {
  color: #fff;
  border-color: var(--accent);
  background: rgba(45,138,116,0.15);
}

.scroll-hint {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.scroll-hint a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid rgba(45,138,116,0.3);
  border-radius: 999px;
  background: rgba(45,138,116,0.08);
  transition: all .2s;
}
.scroll-hint a:hover {
  color: #fff;
  background: rgba(45,138,116,0.18);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .subnav { top: 60px; }
  .subnav-inner { 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    padding: 10px 12px; 
    gap: 8px; 
    -webkit-overflow-scrolling: touch; 
  }
  .subnav-inner::-webkit-scrollbar { display: none; }
  .subnav a { 
    font-size: 0.9rem; 
    padding: 8px 12px; 
    line-height: 1; 
    border-radius: 999px; 
    background: rgba(255,255,255,0.06); 
    border-color: rgba(255,255,255,0.12);
  }
}
