@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(data:font/woff2;base64,) format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(data:font/woff2;base64,) format('woff2');
}

/* --- CSS VARIABLES (BRAND: Pop/Entertainment) --- */
:root {
  --hue-brand: 21; /* For #F76E24 */
  --hue-comp: 211; /* For #248DF7 */
  --bg-1: #210440; /* Dark Purple */
  --accent-1: #F76E24; /* Brand Orange */
  --cta: #248DF7; /* Complementary Blue */
  --cta-glow: #5aa6ff;
  --text-light: #F0F0F0;
  --text-dark: #121212;
  --grey-light: #CCCCCC;
  --grey-mid: #888888;
  --grey-dark: #555555;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.3);
}

/* --- CSS RESET & BASE STYLES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-1);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1rem;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--accent-1);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); border-bottom: 2px solid var(--accent-1); padding-bottom: 0.5rem; margin-top: 0; }
h2:not(:first-child) { margin-top: 0.7em; }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--cta); margin-top: 1.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--cta); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; }
strong { color: var(--accent-1); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.highlight { background: linear-gradient(to right, var(--accent-1), var(--cta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  border: none;
  border-radius: 50px; /* pill shape */
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: linear-gradient(90deg, var(--accent-1), var(--cta));
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(247, 110, 36, 0.4);
}

/* --- HEADER (Layout B: Top Nav) --- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(33, 4, 64, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 1rem 5%;
}
.main-header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.logo .fox-emoji { margin-right: 0.5rem; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}
.main-nav a {
  color: var(--text-light);
  font-weight: 700;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.main-nav a:hover {
  border-bottom-color: var(--accent-1);
  text-decoration: none;
}
.header-cta { display: block; }
.mobile-nav-toggle { display: none; }

/* --- HERO SECTION --- */
.hero {
  padding: 3.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-1), var(--accent-1));
  animation: gradient-animation 15s ease infinite;
  background-size: 200% 200%;
}
@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero h1 { color: #fff; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.hero p { font-size: 1.4rem; color: var(--text-light); max-width: 800px; margin: 1rem auto 2rem; }

/* --- TABLE OF CONTENTS --- */
.toc {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  max-width: 800px;
}
.toc h3 { color: var(--text-light); margin-top: 0; }
.toc ul { list-style-type: none; padding-left: 0; column-count: 2; }
.toc li a { font-weight: bold; }

/* --- CONTENT SECTIONS --- */
.content-section { padding: 1.2rem 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(247, 110, 36, 0.1); }
.card h3 { margin-top: 0; }
.trust-seals {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.trust-seals .seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}
.trust-seals svg { height: 40px; fill: var(--grey-light); }

/* --- BONUS TABLE --- */
.bonus-table-wrapper { overflow-x: auto; }
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  text-align: left;
}
.bonus-table th, .bonus-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}
.bonus-table th { background-color: rgba(0,0,0,0.3); font-family: var(--font-heading); }
.bonus-table td:last-child { text-align: center; }

.bonus-table-sticky-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
}
.bonus-table-sticky {
  position: sticky;
  top: 64px;
  background: rgba(40,0,60,0.92);
  box-shadow: 0 4px 24px rgba(40,0,60,0.13);
  border-radius: 14px;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  overflow: hidden;
  font-family: var(--font-main, inherit);
  margin-bottom: 0;
  border: 1.5px solid rgba(161,76,255,0.18);
}
.bonus-table-sticky th, .bonus-table-sticky td {
  padding: 0.85em 1.1em;
  text-align: left;
  background: transparent;
  font-size: 1.05em;
  color: #fff;
}
.bonus-table-sticky thead th {
  position: sticky;
  top: 0;
  background: rgba(161,76,255,0.92);
  color: #fff;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(161,76,255,0.09);
  font-weight: 800;
  letter-spacing: 0.01em;
}
.bonus-table-sticky tr:nth-child(even) td {
  background: rgba(255,255,255,0.07);
}
.bonus-table-sticky td {
  border-bottom: 1px solid rgba(161,76,255,0.10);
}
.bonus-table-sticky td:nth-child(2) {
  font-family: var(--font-mono, monospace);
  color: #ff7a1a;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.bonus-table-sticky td:first-child {
  font-weight: 600;
}
.bonus-table-sticky tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .bonus-table-sticky th, .bonus-table-sticky td {
    padding: 0.5em 0.4em;
    font-size: 0.97em;
  }
  .bonus-table-sticky {
    font-size: 0.97em;
  }
}

/* --- RATINGS & TESTIMONIALS --- */
.ratings-widget {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}
.star-rating { font-size: 2rem; color: #FFD700; }
.testimonial {
  background: transparent;
  border: 1px dashed var(--border-color);
  padding: 1.5rem;
  border-radius: 10px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: bold;
}

/* --- FOOTER --- */
.main-footer {
  background-color: #000;
  color: var(--grey-mid);
  padding: 3rem 5%;
  margin-top: 3rem;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  list-style: none;
}
.footer-links a { color: var(--grey-light); }
.responsible-gaming {
  border: 1px solid var(--grey-dark);
  padding: 1rem;
  border-radius: 5px;
  margin: 1.5rem auto;
  max-width: 800px;
}

/* --- EXIT INTENT POPUP --- */
/*
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-content {
  background: var(--bg-1);
  border: 2px solid var(--accent-1);
  border-radius: 15px;
  padding: 3rem;
  width: 90%;
  max-width: 600px;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s;
}
*/

/* --- RESPONSIVE STYLES --- */
@media (max-width: 991px) {
  .main-nav ul { display: none; } /* Hide for hamburger menu */
  .header-cta { display: none; }
  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
  }
  .toc ul { column-count: 1; }
}

@media (max-width: 579px) {
  body { font-size: 1rem; }
  .container { width: 95%; }
  .btn { padding: 0.8rem 1.8rem; font-size: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
}

/* --- HIDDEN KEYWORDS --- */
/* SEO Boost: foxy casino promo code, foxy bingo online, foxy slots review */ 
.img-rounded {
  display: block;
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  margin: 0 auto 1rem auto;
} 
.trust-seal-hero {
  display: flex;
  align-items: center;
  font-size: 1rem;
  background: var(--white, #fff);
  border-radius: 8px;
  padding: 0.25em 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-top: 0.7em;
  color: var(--grey-dark, #333);
  font-weight: 500;
  gap: 0.5em;
} 

/* Sticky CTA Foxy Casino */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(90deg, #6c2eb9 0%, #fcb900 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2rem;
  box-shadow: 0 -4px 24px rgba(108,46,185,0.15);
  border-radius: 1.5rem 1.5rem 0 0;
  transition: transform 0.3s;
}
.sticky-cta .fox-emoji {
  font-size: 2rem;
  margin-right: 0.5rem;
}
.sticky-cta p {
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.sticky-cta .store {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 8px rgba(108,46,185,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.sticky-cta .store:hover {
  background: #fcb900;
  box-shadow: 0 4px 16px rgba(252,185,0,0.15);
}
.sticky-cta .store img {
  height: 32px;
  width: auto;
}
@media (max-width: 600px) {
  .sticky-cta {
    font-size: 1rem;
    padding: 0.7rem 0.5rem;
    border-radius: 1rem 1rem 0 0;
    gap: 0.7rem;
  }
  .sticky-cta .fox-emoji {
    font-size: 1.3rem;
  }
  .sticky-cta .store img {
    height: 24px;
  }
} 

/* Sticky CTA store buttons */
.sticky-cta .cta-stores {
  display: flex;
  gap: 1rem;
}
.sticky-cta .store {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 8px rgba(108,46,185,0.10);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  min-width: 140px;
  justify-content: center;
}
.sticky-cta .store.ios {
  color: #111;
}
.sticky-cta .store.ios:hover {
  background: #111;
  color: #fff;
}
.sticky-cta .store.ios .store-icon svg {
  width: 29px;
  height: 29px;
}
.sticky-cta .store.android {
  color: #388e3c;
}
.sticky-cta .store.android:hover {
  background: #388e3c;
  color: #fff;
}
.sticky-cta .store-icon {
  display: flex;
  align-items: center;
}
.sticky-cta .store-label {
  margin-left: 0.5em;
  font-size: 1.05em;
  letter-spacing: 0.01em;
}
.sticky-cta .store svg {
  display: block;
  height: 22px;
  width: 22px;
}
@media (max-width: 600px) {
  .sticky-cta .cta-stores {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .sticky-cta .store {
    width: 100%;
    justify-content: flex-start;
    min-width: 0;
  }
} 

.sticky-cta-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  z-index: 2;
}
.sticky-cta-close:hover {
  opacity: 1;
  color: #fcb900;
} 

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  justify-content: center;
}
.cta-buttons .store {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 8px rgba(108,46,185,0.10);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  min-width: 140px;
  justify-content: center;
}
.cta-buttons .store.ios {
  color: #111;
}
.cta-buttons .store.ios:hover {
  background: #111;
  color: #fff;
}
.cta-buttons .store.android {
  color: #388e3c;
}
.cta-buttons .store.android:hover {
  background: #388e3c;
  color: #fff;
}
.cta-buttons .store-icon {
  display: flex;
  align-items: center;
}
.cta-buttons .store-label {
  margin-left: 0.5em;
  font-size: 1.05em;
  letter-spacing: 0.01em;
}
.cta-buttons .store svg {
  display: block;
  height: 22px;
  width: 22px;
}
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .cta-buttons .store {
    width: 100%;
    justify-content: flex-start;
    min-width: 0;
  }
} 

.grid .material-symbols-rounded {
  font-size: 2em;
  vertical-align: middle;
  margin-right: 0.5em;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
  transition: color 0.2s;
}
.grid li:nth-child(1) .material-symbols-rounded { color: var(--accent-1); }    /* Face ID — оранжевый */
.grid li:nth-child(2) .material-symbols-rounded { color: var(--cta); }         /* Slots — синий */
.grid li:nth-child(3) .material-symbols-rounded { color: #ffe066; }            /* Gift — светло-жёлтый */
.grid li:nth-child(4) .material-symbols-rounded { color: #36e0e0; }            /* Support — бирюзовый */
.grid li:nth-child(5) .material-symbols-rounded { color: #fff; }               /* PayPal — белый */
.grid li:nth-child(6) .material-symbols-rounded { color: #ff7eb9; }            /* Notify — светло-розовый */ 

#bonus table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(33,4,64,0.85);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(33,4,64,0.15);
  overflow: hidden;
  margin: 2rem 0 1.5rem 0;
}
#bonus th, #bonus td {
  padding: 1.1em 1.2em;
  text-align: center;
  font-size: 1.1em;
}
#bonus thead th {
  background: linear-gradient(90deg, var(--accent-1), var(--cta));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.15em;
  border: none;
}
#bonus tbody td {
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}
#bonus tbody tr:last-child td {
  border-bottom: none;
}
#bonus tbody tr:nth-child(even) td {
  background: rgba(36,141,247,0.07);
}
#bonus td strong {
  color: var(--accent-1);
  font-size: 1.1em;
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  #bonus table, #bonus thead, #bonus tbody, #bonus th, #bonus td, #bonus tr {
    display: block;
    width: 100%;
  }
  #bonus thead {
    display: none;
  }
  #bonus td {
    text-align: left;
    padding: 0.9em 1em;
    position: relative;
  }
  #bonus td:before {
    content: attr(data-label);
    font-weight: bold;
    color: var(--cta);
    display: block;
    margin-bottom: 0.3em;
  }
} 

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  margin: 2rem 0;
}
.slider {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  list-style: none;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }
.slider li {
  flex: 0 0 24%;
  max-width: 24%;
  min-width: 220px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider li img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(33,4,64,0.15);
  background: #1a0033;
  transition: box-shadow 0.2s, border 0.2s;
}
.slider li.active img {
  box-shadow: 0 0 0 4px var(--accent-1), 0 4px 24px rgba(33,4,64,0.15);
}
.carousel-prev, .carousel-next {
  background: rgba(33,4,64,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
.carousel-prev { left: -1.5rem; }
.carousel-next { right: -1.5rem; }
.carousel-prev:hover, .carousel-next:hover {
  background: var(--accent-1);
  color: #fff;
}
@media (max-width: 900px) {
  .slider { max-width: 98vw; }
  .slider li { flex-basis: 48%; max-width: 48%; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
}
@media (max-width: 600px) {
  .slider { gap: 0.5rem; }
  .slider li { flex-basis: 98vw; max-width: 98vw; min-width: 0; }
  .carousel-prev, .carousel-next {
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
  }
} 

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 2rem 0 1.5rem 0;
}
.logos .material-symbols-rounded {
  font-size: 3.5rem;
  color: #6c2eb9;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(108,46,185,0.10);
  padding: 0.5rem 0.7rem;
  transition: color 0.2s, background 0.2s;
}
.logos .material-symbols-rounded[title="PayPal"] {
  color: #003087;
}
.logos .material-symbols-rounded[title="Visa"] {
  color: #1a1f71;
}
.logos .material-symbols-rounded[title="Apple Pay"] {
  color: #111;
}
.logos .material-symbols-rounded[title="UKGC Licensed"] {
  color: #43a047;
}
@media (max-width: 600px) {
  .logos {
    gap: 1.2rem;
  }
  .logos .material-symbols-rounded {
    font-size: 2.2rem;
    padding: 0.3rem 0.4rem;
  }
} 

/* Tabs as horizontal pill buttons */
.tabs {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.2em;
  margin: 1.5em 0 2em 0;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.tabs input[type="radio"] {
  display: none;
}

.tabs label {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  text-align: center;
  padding: 0.7em 0;
  border-radius: 999px;
  background: #f5eaff;
  color: #6c3fc5;
  font-weight: 600;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin: 0;
  border: none;
  box-shadow: 0 1px 4px rgba(108,63,197,0.07);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  position: relative;
  z-index: 1;
  float: none !important;
}

.tabs input[type="radio"]:checked + label {
  background: linear-gradient(90deg, #7b3fe4 0%, #ffb300 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(232,92,0,0.13);
  z-index: 2;
}

.tabs .panel {
  display: none;
  background: transparent;
  margin-top: 1.2em;
  width: 100%;
}

#desk:checked ~ .panel:nth-of-type(1),
#ios:checked ~ .panel:nth-of-type(2),
#and:checked ~ .panel:nth-of-type(3) {
  display: block;
}

@media (max-width: 700px) {
  .tabs {
    gap: 0.5em;
  }
  .tabs label {
    font-size: 1em;
    padding: 0.6em 0;
    height: 42px;
  }
} 


.code-timer {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  margin: 1em 0;
  font-size: 1.1em;
}
.code-timer time {
  color: #e85c00;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.05em;
}

/* Bonus code filter pill buttons */
.bonus-filter-btns {
  display: flex;
  gap: 0.75em;
  margin: 1.2em 0 1.5em 0;
  flex-wrap: wrap;
}
.bonus-filter-btn {
  background: #fff;
  color: #e85c00;
  border: 1.5px solid #e85c00;
  border-radius: 999px;
  padding: 0.45em 1.4em;
  font-size: 1em;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 4px rgba(232,92,0,0.07);
  outline: none;
}
.bonus-filter-btn:hover,
.bonus-filter-btn:focus {
  background: #ffe5cc;
  color: #b34700;
  border-color: #b34700;
}
.bonus-filter-btn--active {
  background: #e85c00;
  color: #fff;
  border-color: #e85c00;
  box-shadow: 0 2px 8px rgba(232,92,0,0.13);
}

/* Transparent background for filtered table rows */
.codes tbody tr.visible {
  background: transparent !important;
}

/* Transparent background for promo codes table */
.codes {
  background: transparent;
  width: 100%;
}
.codes th, .codes td {
  background: transparent;
  text-align: center;
  vertical-align: middle;
}

/* Remove background from all promo codes table rows and cells */
.codes tbody tr,
.codes tbody tr td,
.codes tbody tr th {
  background: transparent !important;
}
.codes tbody tr.visible {
  background: transparent !important;
}

/* Copy button styles in promo codes table */
.codes button[data-code] {
  background: #fff;
  color: #e85c00;
  border: 1.5px solid #e85c00;
  border-radius: 999px;
  padding: 0.32em 1.1em 0.32em 1.1em;
  font-size: 0.98em;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 1px 4px rgba(232,92,0,0.07);
  outline: none;
  margin: 0 0.1em;
  display: inline-block;
}
.codes button[data-code]:hover,
.codes button[data-code]:focus {
  background: #ffe5cc;
  color: #b34700;
  border-color: #b34700;
  box-shadow: 0 2px 8px rgba(232,92,0,0.13);
}

/* Transparent background for filter panels (if any) */
.bonus-filter-panel,
.filter-panel,
.filter-content {
  background: transparent !important;
}

/* Transparent background for tabs panels */
.tabs .panel {
  background: transparent;
}

/* Tabs as pill buttons for How to redeem section */
.tab-btn {
  background: #fff;
  color: #e85c00;
  border: 1.5px solid #e85c00;
  border-radius: 999px;
  padding: 0.45em 1.4em;
  font-size: 1em;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 4px rgba(232,92,0,0.07);
  outline: none;
  margin: 0 0.1em;
  display: inline-block;
  min-width: 140px;
  text-align: center;
}
.tab-btn:hover,
.tab-btn:focus {
  background: #ffe5cc;
  color: #b34700;
  border-color: #b34700;
}
.tab-btn--active {
  background: #e85c00;
  color: #fff;
  border-color: #e85c00;
  box-shadow: 0 2px 8px rgba(232,92,0,0.13);
}
.tabs {
  gap: 1em;
}

/* Weekly spoiler codes table improvements */
.codes.rumors th, .codes.rumors td {
  vertical-align: top;
  padding: 0.7em 1em;
  line-height: 1.5;
}
.codes.rumors td {
  min-height: 48px;
}
.codes.rumors td:nth-child(3),
.codes.rumors th:nth-child(3),
.codes.rumors td:nth-child(4),
.codes.rumors th:nth-child(4) {
  text-align: left;
}
.codes.rumors td:nth-child(4) {
  word-break: break-word;
  white-space: normal;
}
.codes.rumors td:nth-child(1),
.codes.rumors th:nth-child(1) {
  width: 110px;
}
.codes.rumors td:nth-child(2),
.codes.rumors th:nth-child(2) {
  width: 130px;
}
.codes.rumors td:nth-child(4),
.codes.rumors th:nth-child(4) {
  width: 40%;
}
@media (max-width: 700px) {
  .codes.rumors th, .codes.rumors td {
    padding: 0.5em 0.4em;
    font-size: 0.98em;
  }
  .codes.rumors td:nth-child(1),
  .codes.rumors th:nth-child(1),
  .codes.rumors td:nth-child(2),
  .codes.rumors th:nth-child(2),
  .codes.rumors td:nth-child(4),
  .codes.rumors th:nth-child(4) {
    width: auto;
  }
}

.tab-switches { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 1.2em; justify-content: center; align-items: center; margin-bottom: 0.5em; width: max-content; margin-left: auto; margin-right: auto; }
.tabs label { width: auto !important; min-width: 200px !important; max-width: none !important; }