:root {
  --c-primary: #0a1b3f;
  --c-secondary: #15306b;
  --c-accent: #d4af37;
  --c-bg: #f4f7fa;
  --c-surface: #ffffff;
  --c-text-main: #091221;
  --c-text-muted: #3e4c5e;
  --font-head: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--c-text-main);
  background-color: var(--c-bg);
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--c-primary);
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

.athleticoree_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.athleticoree_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    background-color 0.2s;
  text-align: center;
  min-width: 44px;
  min-height: 44px;
}

.athleticoree_btn:active {
  transform: scale(0.96);
}

.athleticoree_btn-primary {
  background-color: var(--c-accent);
  color: var(--c-primary);
  border-radius: 4px;
}

.athleticoree_btn-primary:hover {
  background-color: #ebd076;
}

.athleticoree_btn-full {
  width: 100%;
}

/* Header */
.athleticoree_header {
  background-color: var(--c-primary);
  color: var(--c-surface);
  position: sticky;
  top: 0;
  z-index: 100;
  transition:
    background-color 0.3s,
    box-shadow 0.3s;
}

.athleticoree_header.header--scrolled {
  backdrop-filter: blur(14px);
  background-color: rgba(10, 27, 63, 0.95);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

.athleticoree_header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.athleticoree_logo img {
  height: 40px;
}

.athleticoree_nav {
  display: none;
}

.athleticoree_nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--c-primary);
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.athleticoree_nav-link {
  padding: 12px;
  font-weight: 500;
  color: var(--c-surface);
  position: relative;
}

.athleticoree_nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 12px;
  width: 0;
  height: 2px;
  background-color: var(--c-accent);
  transition: width 0.2s;
}

.athleticoree_nav-link:hover::after {
  width: calc(100% - 24px);
}

.athleticoree_header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.athleticoree_auth-link,
.athleticoree_cart-link {
  display: flex;
  align-items: center;
  color: var(--c-surface);
  font-weight: 500;
  gap: 8px;
}

.athleticoree_cart-badge {
  background-color: var(--c-accent);
  color: var(--c-primary);
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.athleticoree_burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.athleticoree_burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--c-surface);
  margin: 0 auto;
  transition: 0.2s;
}

/* Common Layout */
.athleticoree_section {
  padding: 64px 0;
}

.athleticoree_bg-surface {
  background-color: var(--c-surface);
}

.athleticoree_section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.athleticoree_text-center {
  text-align: center;
}

.athleticoree_grid {
  display: grid;
  gap: 24px;
}

.athleticoree_grid-2 {
  grid-template-columns: 1fr;
}

.athleticoree_grid-3 {
  grid-template-columns: 1fr;
}

.athleticoree_grid-4 {
  grid-template-columns: 1fr 1fr;
}

.athleticoree_split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

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

/* Hero */
.athleticoree_hero-bg {
  background-image: url("/assets/images/athleticore-hero-stadium.webp");
  background-size: cover;
  background-position: center;
  color: var(--c-surface);
  position: relative;
}

.athleticoree_hero-overlay {
  background: linear-gradient(
    to right,
    rgba(10, 27, 63, 0.9),
    rgba(10, 27, 63, 0.4)
  );
  padding: 100px 0 60px;
}

.athleticoree_hero-title {
  color: var(--c-surface);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 24px;
}

.athleticoree_hero-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.athleticoree_hero-ticker {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  font-size: 0.9rem;
  color: var(--c-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Product Cards */
.athleticoree_product-card {
  background: var(--c-surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.22s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.athleticoree_product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.athleticoree_product-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.athleticoree_product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.22s;
}

.athleticoree_product-card:hover img {
  transform: scale(1.07);
}

.athleticoree_badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-primary);
  color: var(--c-surface);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
}

.athleticoree_heart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.athleticoree_heart-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 2;
}

.athleticoree_heart-btn.is-active svg {
  fill: var(--c-accent);
  stroke: var(--c-accent);
}

.athleticoree_product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.athleticoree_product-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  cursor: pointer;
}

.athleticoree_product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-secondary);
  margin-bottom: 12px;
}

.athleticoree_product-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Categories */
.athleticoree_category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.athleticoree_category-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.3s;
}

.athleticoree_category-card:hover img {
  filter: brightness(0.4);
}

.athleticoree_category-card h3 {
  position: absolute;
  bottom: 40px;
  left: 16px;
  color: var(--c-surface);
  margin: 0;
}

.athleticoree_category-card p {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--c-accent);
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Timeline */
.athleticoree_timeline {
  border-left: 2px solid var(--c-primary);
  padding-left: 24px;
  margin: 0 auto;
  max-width: 800px;
}

.athleticoree_timeline-step {
  position: relative;
  margin-bottom: 40px;
}

.athleticoree_timeline-step::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--c-accent);
  border: 3px solid var(--c-primary);
  border-radius: 50%;
}

/* Split Media */
.athleticoree_split-img img {
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Reviews */
.athleticoree_review-card {
  background: var(--c-bg);
  padding: 24px;
  border-radius: 8px;
  border-top: 4px solid var(--c-accent);
}

.athleticoree_review-author {
  font-weight: 700;
  color: var(--c-primary);
  font-size: 0.9rem;
}

/* Countdown */
.athleticoree_countdown-banner {
  background: var(--c-primary);
  color: var(--c-surface);
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

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

.athleticoree_countdown-timer span {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-head);
}

/* Mega Block */
.athleticoree_megablock h2 {
  text-align: left;
}

.athleticoree_mega-content h3 {
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.athleticoree_mega-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-secondary);
}

.athleticoree_mega-row {
  display: grid;
  gap: 24px;
  margin: 32px 0;
}

.athleticoree_mega-col {
  background: var(--c-bg);
  padding: 24px;
  border-left: 4px solid var(--c-primary);
}

.athleticoree_mega-proof {
  padding: 24px;
  background: var(--c-primary);
  color: var(--c-surface);
  border-radius: 4px;
  margin: 32px 0;
  font-size: 1.1rem;
}

/* Tips */
.athleticoree_tips-grid {
  display: grid;
  gap: 16px;
}

.athleticoree_tip-card {
  background: var(--c-surface);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.22s,
    transform 0.22s;
}

.athleticoree_tip-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.athleticoree_tip-card h4 {
  color: var(--c-secondary);
  margin-bottom: 8px;
}

/* Tournament Gallery */
.athleticoree_photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.athleticoree_photo-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.22s,
    transform 0.22s;
}

.athleticoree_photo-gallery-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.athleticoree_photo-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.22s;
}

.athleticoree_photo-gallery-item:hover img {
  transform: scale(1.05);
}

/* Social Links */
.athleticoree_social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.athleticoree_social-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: var(--c-primary);
  color: var(--c-surface);
  border-radius: 4px;
  font-weight: 500;
  transition:
    background-color 0.2s,
    transform 0.2s;
}

.athleticoree_social-link:hover {
  background: var(--c-secondary);
  transform: translateY(-2px);
}

.athleticoree_upcoming-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Shop Page */
.athleticoree_page-header {
  background: var(--c-primary);
  color: var(--c-surface);
  padding: 60px 0;
  text-align: center;
}

.athleticoree_page-header h1 {
  color: var(--c-surface);
}

.athleticoree_page-header-lead {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.athleticoree_content-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.athleticoree_content-intro p {
  font-size: 1.1rem;
  color: var(--c-text-muted);
}

.athleticoree_section-lead {
  max-width: 720px;
  margin: -0.5rem auto 2rem;
  text-align: center;
  color: var(--c-text-muted);
}

.athleticoree_shop-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.athleticoree_filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.athleticoree_filter-btn {
  background: var(--c-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
}

.athleticoree_filter-btn.is-active {
  background: var(--c-primary);
  color: var(--c-surface);
  border-color: var(--c-primary);
}

/* Product Detail */
.athleticoree_breadcrumb {
  padding: 24px 0;
  font-size: 0.9rem;
}

.athleticoree_breadcrumb a {
  color: var(--c-secondary);
}

.athleticoree_product-detail {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}

.athleticoree_gallery-main img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.athleticoree_gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.athleticoree_gallery-thumbs img:hover,
.athleticoree_gallery-thumbs img.is-active {
  opacity: 1;
}

.athleticoree_product-info-panel h1 {
  margin-bottom: 8px;
}

.athleticoree_price-large {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-secondary);
  margin: 16px 0;
}

.athleticoree_tags {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.athleticoree_tag {
  background: var(--c-bg);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.athleticoree_stock-ind {
  font-weight: 500;
  margin-bottom: 24px;
}

.athleticoree_return-note {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.athleticoree_related-section {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}

/* Cart */
.athleticoree_cart-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.athleticoree_cart-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: var(--c-surface);
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.athleticoree_cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.athleticoree_qty-ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
}

.athleticoree_qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--c-bg);
  cursor: pointer;
  border-radius: 4px;
}

.athleticoree_cart-remove {
  color: #e53e3e;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.athleticoree_cart-summary {
  background: var(--c-surface);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.athleticoree_cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

/* Forms & Auth */
.athleticoree_auth-box {
  max-width: 400px;
  margin: 0 auto;
  background: var(--c-surface);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.athleticoree_auth-tabs {
  display: flex;
}

.athleticoree_auth-tab {
  flex: 1;
  padding: 16px;
  border: none;
  background: var(--c-bg);
  font-weight: 500;
  cursor: pointer;
}

.athleticoree_auth-tab.is-active {
  background: var(--c-surface);
  color: var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
}

.athleticoree_auth-panel {
  display: none;
  padding: 24px;
}

.athleticoree_auth-panel.is-active {
  display: block;
}

.athleticoree_form-group {
  margin-bottom: 16px;
}

.athleticoree_form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.athleticoree_form-group input,
.athleticoree_form-group select,
.athleticoree_form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.athleticoree_form-error {
  color: #e53e3e;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

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

.athleticoree_dashboard-content {
  display: grid;
  gap: 32px;
}

/* FAQ */
.athleticoree_faq-item {
  margin-bottom: 16px;
  background: var(--c-surface);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.athleticoree_faq-btn {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.athleticoree_faq-btn::after {
  content: "+";
}

.athleticoree_faq-btn.is-open::after {
  content: "-";
}

.athleticoree_faq-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.athleticoree_faq-item.is-open .athleticoree_faq-content {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Policy pages */
.athleticoree_policy-content h2 {
  margin-top: 32px;
}

/* Modals */
.athleticoree_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s;
}

.athleticoree_modal.is-open {
  display: flex;
  opacity: 1;
}

.athleticoree_modal-content {
  background: var(--c-surface);
  width: calc(100% - 32px);
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  border-radius: 8px;
  position: relative;
  transform: translateY(56px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.athleticoree_modal.is-open .athleticoree_modal-content {
  transform: translateY(0);
}

.athleticoree_modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.athleticoree_success-icon {
  width: 80px;
  height: 80px;
  stroke: #38a169;
  stroke-width: 3;
  margin: 0 auto 24px;
}

/* Toast */
.athleticoree_toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--c-primary);
  color: var(--c-surface);
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transform: translateX(110%);
  transition:
    transform 0.27s ease-out,
    opacity 0.2s;
}

.athleticoree_toast.is-visible {
  transform: translateX(0);
}

/* Chat Widget */
.athleticoree_chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.athleticoree_chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-surface);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.athleticoree_chat-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: calc(100vw - 48px);
  max-width: 360px;
  background: var(--c-surface);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.27s ease-out;
  display: flex;
  flex-direction: column;
}

.athleticoree_chat-widget.is-open .athleticoree_chat-toggle {
  transform: rotate(45deg);
}

.athleticoree_chat-widget.is-open .athleticoree_chat-panel {
  max-height: 380px;
}

.athleticoree_chat-header {
  background: var(--c-primary);
  color: var(--c-surface);
  padding: 16px;
  font-weight: 700;
}

.athleticoree_chat-body {
  padding: 16px;
  height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.athleticoree_chat-msg {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  max-width: 85%;
}

.athleticoree_chat-msg--bot {
  background: var(--c-bg);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.athleticoree_chat-msg--user {
  background: var(--c-primary);
  color: var(--c-surface);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.athleticoree_chat-input {
  display: flex;
  padding: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.athleticoree_chat-input input {
  flex-grow: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  margin-right: 8px;
}

.athleticoree_chat-input button {
  background: var(--c-primary);
  color: var(--c-surface);
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
}

/* Cookie Banner */
.athleticoree_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--c-primary);
  color: var(--c-surface);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.36s ease-out;
}

.athleticoree_cookie-banner.is-visible {
  transform: translateY(0);
}

.athleticoree_cookie-banner a {
  text-decoration: underline;
  color: var(--c-accent);
}

/* Footer */
.athleticoree_footer {
  background: #050e21;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

.athleticoree_footer-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.athleticoree_footer h4 {
  color: var(--c-surface);
  margin-bottom: 16px;
}

.athleticoree_footer a {
  display: block;
  margin-bottom: 8px;
  padding: 4px 0;
}

.athleticoree_footer a:hover {
  color: var(--c-surface);
}

.athleticoree_footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* Desktop Media Queries */
@media (min-width: 768px) {
  .athleticoree_nav {
    display: flex;
  }
  .athleticoree_nav.is-open {
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    border: none;
  }
  .athleticoree_burger {
    display: none;
  }
  .athleticoree_grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .athleticoree_grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .athleticoree_split {
    flex-direction: row;
    align-items: center;
  }
  .athleticoree_split > * {
    flex: 1;
  }
  .athleticoree_countdown-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .athleticoree_mega-row {
    grid-template-columns: 1fr 1fr;
  }
  .athleticoree_tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .athleticoree_photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .athleticoree_shop-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .athleticoree_shop-sidebar {
    width: 250px;
    position: sticky;
    top: 100px;
  }
  .athleticoree_filter-list {
    flex-direction: column;
  }
  .athleticoree_shop-grid {
    flex: 1;
  }
  .athleticoree_product-detail {
    flex-direction: row;
  }
  .athleticoree_product-detail > * {
    flex: 1;
  }
  .athleticoree_cart-layout {
    flex-direction: row;
  }
  .athleticoree_cart-items {
    flex: 2;
  }
  .athleticoree_cart-summary {
    flex: 1;
  }
  .athleticoree_cart-item {
    flex-direction: row;
    align-items: center;
  }
  .athleticoree_cart-item img {
    margin-right: 16px;
  }
  .athleticoree_footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .athleticoree_cookie-banner {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .athleticoree_grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .athleticoree_tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .athleticoree_tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Social Casino — Games Grid */
.athleticoree_games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.athleticoree_game-card {
  background: var(--c-surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s;
}

.athleticoree_game-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.athleticoree_game-img-wrap {
  position: relative;
  overflow: hidden;
}

.athleticoree_game-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.22s;
}

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

.athleticoree_game-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.athleticoree_game-info h3 {
  font-size: 1.25rem;
  margin: 0;
}

.athleticoree_game-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.athleticoree_btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
  border-radius: 4px;
}

.athleticoree_btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-surface);
}

/* Social Casino — Iframe Game */
.athleticoree_iframe-wrapper {
  aspect-ratio: 1140 / 735;
  width: 100%;
  border: none;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: var(--c-primary);
}

.athleticoree_iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  margin-bottom: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Social Casino — Disclaimer */
.athleticoree_disclaimer {
  background: var(--c-surface);
  border-top: 4px solid var(--c-accent);
  padding: 48px 0;
}

.athleticoree_disclaimer p {
  color: var(--c-text-muted);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.athleticoree_disclaimer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.athleticoree_disclaimer-links a {
  color: var(--c-secondary);
  font-weight: 500;
  text-decoration: underline;
}

.athleticoree_disclaimer-links a:hover {
  color: var(--c-accent);
}

/* Social Casino — Active Tournaments */
.athleticoree_tournament-card {
  background: var(--c-surface);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--c-accent);
}

.athleticoree_tournament-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.athleticoree_tournament-card p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  margin-bottom: 0;
}

.athleticoree_tournament-status {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .athleticoree_games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .athleticoree_games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .athleticoree_product-card:hover img {
    transform: none;
  }
  .athleticoree_game-card:hover img {
    transform: none;
  }
  .athleticoree_modal-content,
  .athleticoree_toast,
  .athleticoree_chat-panel,
  .athleticoree_cookie-banner {
    transition: none;
    transform: none;
  }
}
