/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0e1926;
  color: #cbd5e0;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0e1926;
}
::-webkit-scrollbar-thumb {
  background: #2d3748;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4a5568;
}

/* ===== Container ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* ===== Typography ===== */
.display-heading {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.section-heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.2px;
  color: #ffffff;
}

.subsection-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.8px;
  color: #ffffff;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #cbd5e0;
}

.label-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(14, 25, 38, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #1a2d3d;
  z-index: 50;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #cbd5e0;
  transition: color 200ms ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e53e3e;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e53e3e;
}

.mobile-menu-btn {
  display: none;
  color: #ffffff;
  font-size: 24px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #0e1926;
  z-index: 60;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #ffffff;
  font-size: 28px;
}

/* ===== Sticky CTA Banner ===== */
.sticky-banner {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: linear-gradient(90deg, #e53e3e, #ed8936);
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sticky-banner p {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.sticky-banner .btn-small {
  background: #ffffff;
  color: #e53e3e;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 24px;
  border-radius: 9999px;
  transition: all 200ms ease;
}

.sticky-banner .btn-small:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 9999px;
  box-shadow: 0 4px 24px rgba(229, 62, 62, 0.3);
  transition: all 300ms ease;
  text-align: center;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 32px rgba(229, 62, 62, 0.6);
}

.btn-outline {
  display: inline-block;
  border: 2px solid #e53e3e;
  color: #e53e3e;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 9999px;
  transition: all 300ms ease;
  text-align: center;
}

.btn-outline:hover {
  background: #e53e3e;
  color: #ffffff;
}

.btn-green {
  display: inline-block;
  background: #48bb78;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 9999px;
  box-shadow: 0 4px 24px rgba(72, 187, 120, 0.3);
  transition: all 300ms ease;
  text-align: center;
}

.btn-green:hover {
  transform: scale(1.02);
  box-shadow: 0 0 32px rgba(72, 187, 120, 0.5);
}

.btn-white {
  display: inline-block;
  background: #ffffff;
  color: #e53e3e;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 20px 48px;
  border-radius: 9999px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: all 300ms ease;
  text-align: center;
}

.btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.btn-small-red {
  display: inline-block;
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 9999px;
  transition: all 200ms ease;
}

.btn-small-red:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(229, 62, 62, 0.5);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.08) 0%, transparent 50%), #0e1926;
  padding: 160px 5vw 100px;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content h1 .highlight {
  color: #e53e3e;
}

.hero-content .subtitle {
  font-size: 17px;
  color: #cbd5e0;
  max-width: 520px;
  margin-bottom: 24px;
}

.trust-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.trust-item i {
  font-size: 16px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transform: rotate(2deg);
  transition: transform 500ms ease;
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* ===== Featured Partners ===== */
.partners {
  background: #101d2d;
  padding: 60px 5vw;
}

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

.partners-header a {
  color: #e53e3e;
  font-size: 14px;
  font-weight: 600;
  transition: all 200ms ease;
}

.partners-header a:hover {
  text-decoration: underline;
}

.partners-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  font-size: 20px;
  font-weight: 700;
  color: #718096;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 300ms ease;
  padding: 12px 24px;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  color: #ffffff;
}

/* ===== Promo Codes Section ===== */
.promo-codes {
  background: #0e1926;
  padding: 120px 5vw;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header p {
  margin-top: 16px;
  color: #a0aec0;
}

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

.promo-card {
  background: #080d14;
  border: 1px solid #1a2d3d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  border-color: #4a5568;
}

.promo-card .accent-bar {
  height: 4px;
  background: #e53e3e;
}

.promo-card.green-accent .accent-bar {
  background: #48bb78;
}

.promo-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-platform {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.promo-bonus {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.promo-code-box {
  background: rgba(255,255,255,0.05);
  border: 1px dashed #4a5568;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.promo-code-text {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  color: #ed8936;
  letter-spacing: 2px;
}

.copy-btn {
  color: #a0aec0;
  font-size: 14px;
  transition: color 200ms ease;
  padding: 4px;
}

.copy-btn:hover {
  color: #ffffff;
}

.promo-details {
  list-style: none;
  margin-bottom: 20px;
}

.promo-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #a0aec0;
  margin-bottom: 6px;
}

.promo-details li i {
  color: #48bb78;
  font-size: 12px;
}

.promo-card .btn-primary {
  width: 100%;
  margin-bottom: 12px;
}

.promo-guide-link {
  text-align: center;
  font-size: 13px;
  color: #a0aec0;
  transition: color 200ms ease;
}

.promo-guide-link:hover {
  color: #e53e3e;
  text-decoration: underline;
}

/* ===== Sportsbook Section ===== */
.sportsbook {
  background: #101d2d;
  padding: 120px 5vw;
}

.sportsbook .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sportsbook-label {
  font-size: 13px;
  font-weight: 600;
  color: #e53e3e;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.sportsbook-content h2 {
  margin-bottom: 20px;
}

.sportsbook-content > p {
  max-width: 500px;
  margin-bottom: 32px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(229, 62, 62, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53e3e;
  font-size: 18px;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.6;
}

.sportsbook-image img {
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

/* ===== Game Guides Section ===== */
.game-guides {
  background: #0e1926;
  padding: 120px 5vw;
}

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

.guide-card {
  background: #080d14;
  border: 1px solid #1a2d3d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: all 300ms ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  border-color: #4a5568;
}

.guide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.guide-card-body {
  padding: 24px;
}

.guide-tag {
  font-size: 11px;
  font-weight: 600;
  color: #e53e3e;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.guide-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-link {
  font-size: 14px;
  font-weight: 600;
  color: #e53e3e;
  transition: all 200ms ease;
}

.guide-link:hover {
  text-decoration: underline;
}

/* ===== Bonus Tab System ===== */
.bonus-tabs {
  background: #101d2d;
  padding: 120px 5vw;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.tab-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1px solid #2d3748;
  color: #a0aec0;
  background: transparent;
  transition: all 200ms ease;
}

.tab-btn:hover {
  border-color: #4a5568;
  color: #ffffff;
}

.tab-btn.active {
  background: #e53e3e;
  border-color: #e53e3e;
  color: #ffffff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFadeIn 300ms ease;
}

@keyframes tabFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
}

.bonus-table thead th {
  background: #080d14;
  color: #a0aec0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  text-align: left;
}

.bonus-table tbody tr {
  border-bottom: 1px solid #1a2d3d;
  transition: background 200ms ease;
}

.bonus-table tbody tr:nth-child(even) {
  background: #080d14;
}

.bonus-table tbody tr:nth-child(odd) {
  background: #0e1926;
}

.bonus-table tbody tr:hover {
  background: #1a2d3d;
}

.bonus-table td {
  padding: 16px 20px;
  vertical-align: middle;
}

.bonus-table .casino-name {
  font-weight: 700;
  color: #ffffff;
}

.bonus-table .bonus-code {
  font-family: 'Source Code Pro', monospace;
  color: #ed8936;
  letter-spacing: 1px;
}

.bonus-table .wagering {
  color: #a0aec0;
  font-size: 14px;
}

.star-rating {
  color: #ed8936;
  font-size: 13px;
}

.star-rating .empty {
  color: #2d3748;
}

/* ===== Testimonials ===== */
.testimonials {
  background: #0e1926;
  padding: 120px 5vw;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.testimonial-card {
  background: #080d14;
  border: 1px solid #1a2d3d;
  border-radius: 12px;
  padding: 32px;
  transition: all 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  border-color: #4a5568;
}

.stars {
  color: #ed8936;
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 15px;
  color: #cbd5e0;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a2d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
}

.author-location {
  font-size: 13px;
  color: #718096;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.stat-label {
  font-size: 14px;
  color: #a0aec0;
  margin-top: 4px;
}

/* ===== FAQ Section ===== */
.faq {
  background: #000000;
  padding: 120px 5vw;
}

.faq .container {
  max-width: 800px;
}

.accordion-item {
  border-bottom: 1px solid #1a2d3d;
  padding: 24px 0;
}

.accordion-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.accordion-question h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  transition: color 200ms ease;
}

.accordion-item.active .accordion-question h3 {
  color: #e53e3e;
}

.accordion-chevron {
  color: #a0aec0;
  font-size: 14px;
  transition: transform 400ms ease;
  min-width: 16px;
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms ease;
}

.accordion-item.active .accordion-answer {
  max-height: 500px;
  padding-top: 16px;
}

.accordion-answer p {
  font-size: 15px;
  color: #cbd5e0;
  line-height: 1.7;
}

.accordion-answer a {
  color: #e53e3e;
  text-decoration: underline;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #ed8936 100%);
  padding: 100px 5vw;
  text-align: center;
}

.cta-banner .container {
  max-width: 800px;
}

.cta-banner h2 {
  font-size: 54px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ===== Related Links Section ===== */
.related-links {
  background: #080d14;
  padding: 80px 5vw;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.link-card {
  background: #0e1926;
  border: 1px solid #1a2d3d;
  border-radius: 8px;
  padding: 20px 24px;
  transition: all 200ms ease;
}

.link-card:hover {
  border-color: #4a5568;
  transform: translateY(-2px);
}

.link-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  transition: color 200ms ease;
}

.link-card:hover .link-card-title {
  color: #e53e3e;
}

.link-card-url {
  font-size: 11px;
  color: #718096;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 45;
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 9999px;
  box-shadow: 0 0 24px rgba(229, 62, 62, 0.4);
  transition: all 300ms ease;
  animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(229, 62, 62, 0.4); }
  50% { box-shadow: 0 0 32px rgba(229, 62, 62, 0.6); }
}

.floating-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(229, 62, 62, 0.7);
}

/* ===== Footer ===== */
.footer {
  background: #000000;
  padding: 80px 5vw 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #a0aec0;
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: #e53e3e;
}

.footer-bottom {
  border-top: 1px solid #1a2d3d;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #718096;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }
.reveal-delay-7 { transition-delay: 700ms; }
.reveal-delay-8 { transition-delay: 800ms; }

/* ===== Focus States (Accessibility) ===== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #e53e3e;
  outline-offset: 2px;
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #48bb78;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  z-index: 100;
  opacity: 0;
  transition: all 400ms ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .display-heading { font-size: 40px; }
  .section-heading { font-size: 36px; }
  .subsection-heading { font-size: 26px; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content .subtitle {
    margin: 0 auto 24px;
  }

  .trust-bar {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image img {
    transform: rotate(0deg);
  }

  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sportsbook .container {
    grid-template-columns: 1fr;
  }

  .sportsbook-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .display-heading { font-size: 32px; }
  .section-heading { font-size: 28px; }
  .subsection-heading { font-size: 22px; }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 140px 20px 80px;
  }

  .hero .container {
    padding: 0;
  }

  .promo-codes,
  .sportsbook,
  .game-guides,
  .bonus-tabs,
  .testimonials,
  .faq {
    padding: 60px 20px;
  }

  .promo-grid,
  .guides-grid,
  .testimonial-grid,
  .links-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 80px 20px;
  }

  .cta-banner h2 {
    font-size: 36px;
  }

  .footer {
    padding: 60px 20px 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
  }

  .stats-bar {
    flex-direction: column;
    gap: 32px;
  }

  .tab-nav {
    gap: 6px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .bonus-table {
    font-size: 13px;
  }

  .bonus-table thead {
    display: none;
  }

  .bonus-table tbody tr {
    display: block;
    margin-bottom: 16px;
    border-radius: 8px;
    padding: 16px;
  }

  .bonus-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #1a2d3d;
  }

  .bonus-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #a0aec0;
    font-size: 12px;
    text-transform: uppercase;
  }

  .bonus-table td:last-child {
    border-bottom: none;
  }

  .sticky-banner {
    padding: 12px 20px;
    text-align: center;
  }

  .sticky-banner p {
    font-size: 12px;
  }
}
