/* ==========================================================================
   Mac Recycling - Main Stylesheet (css/style.css)
   1-to-1 Mockup Replication | Pure Native CSS | Responsive to 320px
   ========================================================================== */

:root {
  --bg-dark: #0A0A0A;
  --bg-card: #141414;
  --bg-surface: #111111;
  --accent-orange: #FF4500;
  --accent-orange-hover: #FF571A;
  --text-main: #FFFFFF;
  --text-muted: #A3A3A3;
  --text-dim: #666666;
  --border-dark: #2A2A2A;
  --border-dim: #333333;
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1320px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-muted);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background-color: var(--bg-dark);
  color: var(--text-muted);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a:hover {
  color: var(--accent-orange);
}

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

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

/* Animations */
@keyframes mac-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* Top Warning Bar */
.top-warning-bar {
  position: sticky;
  top: 0;
  z-index: 1001;
  height: 40px;
  background-color: #0A0A0A;
  border-bottom: 1px solid var(--accent-orange);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.warning-marquee-track {
  display: flex;
  width: max-content;
  animation: mac-marquee 46s linear infinite;
  will-change: transform;
}

.warning-marquee-track span {
  display: block;
  white-space: nowrap;
  color: #D4D4D4;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding-right: 48px;
}

.warning-marquee-track a {
  color: var(--accent-orange);
  text-decoration: underline;
  margin-left: 4px;
}

/* Header Navigation */
.site-header {
  position: sticky;
  top: 40px;
  z-index: 1000;
  height: 60px;
  background-color: #0A0A0A;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.brand-logo {
  color: var(--text-main);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border: 1px solid var(--border-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

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

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

/* Buttons */
.btn-orange-fill {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  min-height: 48px;
}

.btn-orange-fill:hover {
  transform: translateY(-3px);
  color: #FFFFFF;
  background-color: var(--accent-orange-hover);
}

.btn-orange-outline {
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  min-height: 48px;
}

.btn-orange-outline:hover {
  background-color: var(--accent-orange);
  color: #FFFFFF;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  padding: 140px 5% 100px 5%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero-left-col {
  grid-column: 1 / span 7;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  max-width: 100%;
}

.hero-h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
  max-width: 100%;
}

.badge-pill {
  background-color: var(--bg-card);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  max-width: 100%;
  word-break: break-word;
}

.hero-p {
  margin: 0 0 24px 0;
  max-width: 600px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-right-col {
  grid-column: 6 / span 7;
  grid-row: 1;
  z-index: 1;
  max-width: 100%;
}

.hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border-dark);
}

/* Outline Marquee Section */
.marquee-stroke-section {
  height: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.marquee-stroke-track {
  display: flex;
  width: max-content;
  animation: mac-marquee 40s linear infinite;
  will-change: transform;
}

.marquee-stroke-track span {
  white-space: nowrap;
  font-size: clamp(3.5rem, 8vw, 6.25rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-orange);
  padding-right: 40px;
}

/* About Preview Section (Exact 1-to-1 Mockup Match + Mobile Adaptive) */
.about-preview-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5%;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.about-img-picture,
picture.about-img-picture {
  width: 48%;
  max-width: 580px;
  flex-shrink: 0;
  display: block;
}

.about-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border: 1px solid #2A2A2A;
}

.about-text-card {
  width: 62%;
  max-width: 760px;
  margin-left: -15%;
  background-color: #141414;
  border: 1px solid #2A2A2A;
  padding: 50px 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
}

.about-text-card .section-h2 {
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  color: #FFFFFF !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

.about-p {
  margin: 0 0 24px 0;
  color: #999999;
  font-size: 14px;
  line-height: 1.7;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FF4500;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 36px;
}

.about-link:hover {
  color: #FF571A;
  text-decoration: underline;
}

.stats-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
  width: 100%;
}

.stat-box {
  background-color: #141414;
  border: 1px solid #262626;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-h3 {
  margin: 0;
  color: #FF4500;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stat-p {
  margin: 0;
  color: #666666;
  font-size: 12px;
  line-height: 1.4;
}

/* Rules Preview Section */
.rules-preview-section {
  display: flex;
  align-items: stretch;
}

.rules-left-orange {
  width: 30%;
  background-color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  overflow: hidden;
}

.rules-left-orange img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rules-right-text {
  width: 70%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--bg-dark);
}

/* Tournaments Preview Section */
.tournaments-preview-section {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  background-image: linear-gradient(#0A0A0A, rgba(10, 10, 10, 0.35), #0A0A0A), url('../images/tournaments.webp');
  background-size: cover, cover;
  background-position: center, center;
}

.tournaments-center-box {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Contact Page Form & Map Components */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 5%;
  width: 100%;
}

.contact-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 48px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form-label {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: #0A0A0A;
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  padding: 14px 18px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-orange);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #555555;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background-color: #0A0A0A;
  color: #FFFFFF;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
}

.form-checkbox-group input[type="checkbox"] {
  accent-color: var(--accent-orange);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.map-card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-dark);
  overflow: hidden;
  background-color: var(--bg-card);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Policy Page Design System */
.policy-page-header {
  padding: 140px 5% 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--border-dark);
  background-color: var(--bg-surface);
}

.policy-badge {
  background-color: var(--bg-card);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
}

.policy-h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.policy-meta {
  color: var(--text-dim);
  font-size: 13px;
}

.policy-grid-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 60px 5% 120px 5%;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 28px;
}

.policy-sidebar-title {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.policy-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  max-height: 480px;
  overflow-y: auto;
}

.policy-toc-list a {
  color: var(--text-muted);
  font-size: 13px;
  transition: var(--transition);
  display: block;
  line-height: 1.4;
}

.policy-toc-list a:hover {
  color: var(--accent-orange);
}

.policy-sidebar-support-card {
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-sidebar-support-card span {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
}

.policy-sidebar-support-card a {
  color: var(--accent-orange);
  font-size: 12px;
}

.policy-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy-point-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  scroll-margin-top: 120px;
}

.policy-point-card:hover {
  border-color: var(--border-dim);
}

.policy-point-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.policy-point-num {
  width: 36px;
  height: 36px;
  background-color: var(--bg-dark);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-point-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0;
}

.policy-point-body {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.policy-point-body p {
  margin: 0 0 12px 0;
}

.policy-point-body p:last-child {
  margin-bottom: 0;
}

.policy-point-body ul {
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* FAQ Section */
.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 5%;
}

.faq-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
}

.faq-title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
}

.faq-icon {
  color: var(--accent-orange);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
  user-select: none;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.faq-item.active .faq-panel {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 24px;
}

.faq-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  padding-right: 48px;
}

/* Reviews Section */
.reviews-section {
  display: flex;
  flex-direction: column;
  padding: 0 0 120px 0;
}

.reviews-section .section-h2,
.reviews-section h2,
.reviews-title {
  margin: 0 0 48px 5% !important;
  padding-left: 0 !important;
  color: #FFFFFF !important;
  font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  text-align: left !important;
}

.reviews-overflow {
  display: flex;
  overflow: hidden;
  padding: 0 5%;
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
  will-change: transform;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card-item {
  min-width: 320px;
  margin-right: 24px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.review-card-item:hover {
  border-color: var(--accent-orange);
  transform: translateY(-6px);
}

.review-card-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.review-card-author {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.disclaimer-h3 {
  margin: 0;
  color: var(--accent-orange);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.disclaimer-p {
  margin: 0;
  max-width: 900px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.disclaimer-phone {
  margin: 0;
  max-width: 900px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.helpline-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.helpline-links-row a {
  color: var(--accent-orange);
  font-size: 13px;
  text-decoration: underline;
}

/* Footer Component (Exact Mockup Match 1-to-1) */
.site-footer {
  background-color: #000000;
  padding: 80px 5% 40px 5%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  color: #A3A3A3;
}

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

.footer-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand-desc {
  margin: 0;
  color: #666666;
  font-size: 12px;
  line-height: 1.8;
}

.footer-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #333333;
  padding: 8px 14px;
  align-self: flex-start;
  border-radius: 2px;
}

.footer-badge-orange {
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-badge-text {
  color: #666666;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-col a {
  color: #A3A3A3;
  font-size: 13px;
  transition: var(--transition);
}

.footer-nav-col a:hover {
  color: var(--accent-orange);
}

/* Exact Newsletter Column Styling from Mockup */
.footer-newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.footer-newsletter-title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.footer-newsletter-input-underline {
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #333333 !important;
  color: #FFFFFF !important;
  padding: 12px 0 !important;
  font-size: 14px !important;
  outline: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.footer-newsletter-input-underline::placeholder {
  color: #666666 !important;
  opacity: 1 !important;
}

.footer-newsletter-input-underline:focus {
  border-bottom-color: var(--accent-orange) !important;
}

.footer-subscribe-btn {
  background-color: var(--accent-orange) !important;
  color: #FFFFFF !important;
  border: none !important;
  padding: 14px 28px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  align-self: flex-start !important;
  transition: var(--transition);
  border-radius: 0 !important;
}

.footer-subscribe-btn:hover {
  background-color: var(--accent-orange-hover) !important;
}

.footer-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666666;
  font-size: 12px;
  cursor: pointer;
  margin-top: 4px;
}

.footer-checkbox-label input[type="checkbox"] {
  accent-color: var(--accent-orange);
  width: 14px;
  height: 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.footer-middle-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
}

.footer-badges-4row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-outline-badge {
  border: 1px solid #262626;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #888888;
  text-transform: uppercase;
}

.footer-middle-disclaimer-p {
  margin: 0;
  max-width: 960px;
  text-align: center;
  color: #666666;
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom-divider {
  border-top: 1px solid #1A1A1A;
  padding-top: 24px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: #555555;
}

.footer-company-info {
  line-height: 1.6;
}

.footer-helplines-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-helplines-row a {
  color: #888888;
  font-size: 12px;
  transition: var(--transition);
}

.footer-helplines-row a:hover {
  color: var(--accent-orange);
}

.footer-copyright-center {
  margin-top: 36px;
  text-align: center;
  font-size: 12px;
  color: #555555;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Modals & Overlays */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 560px;
  width: 100%;
  background: #000000;
  border: 1px solid var(--accent-orange);
  box-shadow: 0 0 40px rgba(255, 69, 0, 0.35);
  padding: 48px;
  text-align: center;
}

.modal-badge-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 20px;
  font-weight: 700;
}

.modal-h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modal-p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.modal-btn-row {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.modal-btn-row .btn-orange-fill,
.modal-btn-row .btn-orange-outline {
  flex: 1;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  margin: 0 auto;
  z-index: 9990;
  background-color: #141414;
  border: 1px solid var(--accent-orange);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(200%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-sm {
  padding: 10px 20px !important;
  font-size: 11px !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 100px 5% 60px 5%;
  }

  .hero-left-col {
    grid-column: 1;
  }

  .hero-right-col {
    grid-column: 1;
    margin-top: 40px;
  }

  .about-preview-section {
    flex-direction: column;
    padding: 60px 5% 80px 5%;
  }

  .about-img-picture,
  picture.about-img-picture {
    width: 100%;
    max-width: 100%;
  }

  .about-img-box {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .about-text-card {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: -30px;
    padding: 36px 28px;
  }

  .rules-preview-section {
    flex-direction: column;
  }

  .rules-left-orange {
    width: 100%;
    min-height: 240px;
  }

  .rules-right-text {
    width: 100%;
    padding: 48px 24px;
  }

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

  .contact-card,
  .map-card {
    padding: 32px;
  }

  .policy-grid-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }
}

/* Header Burger Menu Triggers at <= 1000px */
@media (max-width: 1000px) {
  .site-header {
    padding: 0 4%;
  }

  .main-nav {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #0A0A0A;
    border-bottom: 1px solid var(--border-dark);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    visibility: hidden;
    z-index: 999;
  }

  .main-nav.active {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

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

@media (max-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-divider {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-btns {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Responsive Fixes for Small Mobile Screens <= 480px / 420px */
@media (max-width: 480px) {
  .hero-section {
    padding: 80px 16px 40px 16px !important;
  }

  .hero-h1 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }

  .hero-badges-row {
    gap: 6px;
  }

  .badge-pill {
    font-size: 11px;
    padding: 6px 12px;
    max-width: 100%;
    white-space: normal;
  }

  .about-preview-section {
    padding: 40px 16px 60px 16px;
  }

  .about-text-card {
    margin-top: -20px;
    padding: 24px 16px;
  }

  .about-text-card .section-h2 {
    font-size: 22px !important;
  }

  .stats-3col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-box {
    padding: 16px 20px;
  }

  .btn-orange-fill {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px !important;
    font-size: 12px !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .btn-orange-outline {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px !important;
    font-size: 12px !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .modal-card {
    padding: 24px;
  }

  .modal-btn-row {
    flex-direction: column;
  }

  .contact-card {
    padding: 24px;
  }

  .policy-point-card {
    padding: 24px;
  }
}