@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Quicksand:wght@500;700;900&display=swap');

:root {
  --primary: #ff007f;
  --primary-rgb: 255, 0, 127;
  --secondary: #ffb703;
  --accent: #00f5d4;
  --dark: #0d0b1e;
  --light: #ffffff;
  --gray: #f0f0f5;
  --border: #1a1a1a;
  --shadow: 6px 6px 0px #1a1a1a;
  --font-heading: 'Lilita One', cursive;
  --font-body: 'Quicksand', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: #171430;
  background-image: 
    radial-gradient(#ff007f 10%, transparent 11%),
    radial-gradient(#00f5d4 10%, transparent 11%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
  border-left: 4px solid var(--border);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 4px solid var(--border);
  border-radius: 10px;
}

/* 1. Top Disclaimer Bar */
.top-disclaimer-bar {
  background: #ff0055;
  color: #fff;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 15px;
  border-bottom: 4px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 0px rgba(0,0,0,0.3);
}

/* 2. Header System */
header {
  height: 72px;
  background: rgba(26, 20, 50, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 4px solid var(--border);
  position: sticky;
  top: 38px; /* Offset for top bar */
  z-index: 999;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 40px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--secondary);
  text-shadow: 3px 3px 0px var(--border);
  margin-left: 10px;
  letter-spacing: 1px;
}

nav.desktop-nav {
  display: flex;
  gap: 30px;
}

nav.desktop-nav a {
  font-family: var(--font-heading);
  font-size: 28px; /* Strict 28px constraint */
  color: var(--light);
  text-decoration: none;
  text-shadow: 2px 2px 0px var(--border);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

nav.desktop-nav a:hover,
nav.desktop-nav a.active {
  color: var(--accent);
  transform: scale(1.1) rotate(-2deg);
}

.header-cta-container {
  display: flex;
  align-items: center;
}

.btn-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px; /* Slight buffer for the text */
  height: 40px;
  background: var(--secondary);
  color: var(--border);
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--border);
  border-radius: 12px;
  box-shadow: 3px 3px 0px var(--border);
  transition: all 0.1s ease;
}

.btn-header:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--border);
}

.btn-header:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px var(--border);
}

/* Mobile Header elements */
.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 3px solid var(--border);
  border-radius: 10px;
  box-shadow: 2px 2px 0px var(--border);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  outline: none;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 4px;
  background: var(--light);
  position: relative;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger-btn span::before,
.hamburger-btn span::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 4px;
  background: var(--light);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger-btn span::before { top: -8px; }
.hamburger-btn span::after { bottom: -8px; }

.hamburger-btn.open span { background: transparent; }
.hamburger-btn.open span::before { transform: rotate(45deg); top: 0; }
.hamburger-btn.open span::after { transform: rotate(-45deg); bottom: 0; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(13, 11, 30, 0.98);
  backdrop-filter: blur(15px);
  z-index: 998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 6px solid var(--border);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 36px; /* Strict 36px constraint */
  color: var(--light);
  text-decoration: none;
  text-shadow: 3px 3px 0px var(--border);
  transition: transform 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.mobile-menu .btn-header {
  width: 240px;
  height: 60px;
  font-size: 24px;
  margin-top: 20px;
}

/* 3. Global Card & Button Styles */
.cartoon-card {
  background: #252147;
  border: 4px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cartoon-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px var(--border);
}

.btn-cartoon {
  display: inline-block;
  background: var(--secondary);
  color: var(--border);
  font-family: var(--font-heading);
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 30px;
  border: 4px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cartoon:hover {
  transform: translate(-3px, -3px) scale(1.02);
  box-shadow: 9px 9px 0px var(--border);
}

.btn-cartoon:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0px var(--border);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 46px;
  color: var(--secondary);
  text-shadow: 4px 4px 0px var(--border);
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 4. Home Page Components */
.hero-section {
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.hero-badge {
  background: var(--accent);
  color: var(--border);
  font-family: var(--font-heading);
  font-size: 18px;
  padding: 8px 20px;
  border: 3px solid var(--border);
  border-radius: 30px;
  box-shadow: 3px 3px 0px var(--border);
  text-transform: uppercase;
  display: inline-block;
  transform: rotate(-1deg);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1.1;
  color: var(--light);
  text-shadow: 5px 5px 0px var(--border);
}

.hero-title span {
  color: var(--primary);
  display: inline-block;
  transform: rotate(1deg);
}

.hero-subtitle {
  font-size: 20px;
  max-width: 800px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 15px;
}

.hero-illustration {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  border-radius: 32px;
  border: 6px solid var(--border);
  box-shadow: 10px 10px 0px var(--border);
  transition: transform 0.3s ease;
}

.hero-illustration:hover {
  transform: scale(1.01) rotate(0.5deg);
}

.feature-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 15px;
  text-shadow: 2px 2px 0px var(--border);
}

.feature-card p {
  font-size: 16px;
  color: #ccc;
}

.counter-section {
  background: var(--primary);
  border-top: 4px solid var(--border);
  border-bottom: 4px solid var(--border);
  padding: 50px 20px;
  box-shadow: inset 0 10px 20px rgba(0,0,0,0.3);
}

.counter-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.counter-item h4 {
  font-family: var(--font-heading);
  font-size: 54px;
  color: var(--secondary);
  text-shadow: 4px 4px 0px var(--border);
}

.counter-item p {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

/* 5. About Us Components */
.about-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  color: var(--primary);
  text-shadow: 4px 4px 0px var(--border);
  margin-bottom: 10px;
}

.about-content {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
}

.about-content p {
  margin-bottom: 25px;
}

.about-content strong {
  color: var(--secondary);
}

.cartoon-highlight-box {
  background: #ffb703;
  color: var(--border);
  border: 4px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 6px 6px 0px var(--border);
}

.cartoon-highlight-box h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary);
  text-shadow: 2px 2px 0px var(--border);
  margin-bottom: 10px;
}

.cartoon-highlight-box p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: #252147;
  border: 4px solid var(--border);
  border-radius: 24px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--border);
  object-fit: cover;
  margin-bottom: 15px;
  background: var(--accent);
}

.team-member h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 5px;
}

/* 6. Casino Lobby Components */
.lobby-hero {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.lobby-hero h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  color: var(--primary);
  text-shadow: 4px 4px 0px var(--border);
  margin-bottom: 15px;
}

.lobby-hero p {
  font-size: 18px;
  color: #ccc;
}

.game-cabinet-wrapper {
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.game-cabinet {
  background: #110e25;
  border: 6px solid var(--border);
  border-radius: 30px;
  box-shadow: 12px 12px 0px var(--border);
  overflow: hidden;
}

.cabinet-header {
  background: var(--primary);
  border-bottom: 4px solid var(--border);
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cabinet-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--light);
  text-shadow: 2px 2px 0px var(--border);
}

.cabinet-badge {
  background: var(--accent);
  color: var(--border);
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 6px 12px;
  border: 3px solid var(--border);
  border-radius: 12px;
  text-transform: uppercase;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cabinet-footer {
  background: rgba(26, 20, 50, 0.9);
  border-top: 4px solid var(--border);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.credit-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--secondary);
}

.room-section {
  background: rgba(13, 11, 30, 0.5);
  border-top: 4px solid var(--border);
  padding: 80px 20px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.room-card {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid var(--border);
}

.room-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);
  padding: 20px 20px 10px;
}

.room-card p {
  padding: 0 20px 20px;
  flex-grow: 1;
  color: #ccc;
}

.room-card .btn-cartoon {
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* 7. Blog Page Components */
.blog-hero {
  text-align: center;
  padding: 60px 20px;
}

.blog-hero h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  color: var(--primary);
  text-shadow: 4px 4px 0px var(--border);
}

.blog-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article-block {
  background: #252147;
  border: 4px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 40px;
}

.article-meta {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 4px 12px;
  border: 2px solid var(--border);
  border-radius: 10px;
  margin-bottom: 15px;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--secondary);
  text-shadow: 2px 2px 0px var(--border);
  margin-bottom: 20px;
}

.article-content {
  font-size: 16px;
  color: #ddd;
  line-height: 1.7;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent);
  margin: 25px 0 10px;
}

.article-content p {
  margin-bottom: 15px;
}

/* 8. Contact Us Components */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-form h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--primary);
  text-shadow: 2px 2px 0px var(--border);
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 8px;
  text-shadow: 1px 1px 0px var(--border);
}

.form-control {
  width: 100%;
  background: #171430;
  border: 3px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--accent);
}

.contact-info-panel h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--accent);
  text-shadow: 2px 2px 0px var(--border);
  margin-bottom: 20px;
}

.info-card {
  background: #252147;
  border: 3px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0px var(--border);
}

/* 9. Responsible Gaming Components */
.safety-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.safety-header {
  text-align: center;
  margin-bottom: 50px;
}

.safety-header h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  color: var(--primary);
  text-shadow: 4px 4px 0px var(--border);
}

.safety-content {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
}

.safety-content p {
  margin-bottom: 25px;
}

.safety-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.safety-rule-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 15px;
  text-shadow: 2px 2px 0px var(--border);
}

.safety-rule-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

/* 10. Legal Center Components */
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.legal-nav-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tab-btn {
  background: #252147;
  color: var(--light);
  border: 3px solid var(--border);
  border-radius: 14px;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 4px 4px 0px var(--border);
  transition: all 0.1s;
  text-align: left;
}

.tab-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--border);
}

.tab-btn.active {
  background: var(--secondary);
  color: var(--border);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px var(--border);
}

.legal-content-pane {
  display: none;
  background: #252147;
  border: 4px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.legal-content-pane.active {
  display: block;
}

.legal-content-pane h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--primary);
  text-shadow: 2px 2px 0px var(--border);
  margin-bottom: 25px;
}

.legal-content-pane h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);
  text-shadow: 1px 1px 0px var(--border);
  margin: 30px 0 15px;
}

.legal-content-pane p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 15px;
}

.legal-content-pane ul {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #ddd;
}

.legal-content-pane li {
  margin-bottom: 8px;
}

.faq-item {
  margin-bottom: 25px;
  border-bottom: 2px dashed rgba(255,255,255,0.1);
  padding-bottom: 20px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 10px;
}

/* 11. Footer & Finland Address */
footer {
  background: #0b0918;
  border-top: 6px solid var(--border);
  padding: 60px 20px 20px;
  position: relative;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary);
  text-shadow: 2px 2px 0px var(--border);
  margin-bottom: 15px;
}

.footer-brand p {
  color: #ccc;
  margin-bottom: 20px;
}

.footer-links h5, .footer-address h5 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);
  text-shadow: 2px 2px 0px var(--border);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: var(--secondary);
}

.address-box {
  background: #171430;
  border: 3px solid var(--border);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 4px 4px 0px var(--border);
  font-size: 15px;
  color: #ddd;
}

.address-box strong {
  color: var(--secondary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 3px solid var(--border);
  text-align: center;
  font-size: 14px;
  color: #777;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: 90%;
  max-width: 600px;
  background: #ffb703;
  color: var(--border);
  border: 4px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 0px var(--border);
  padding: 25px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner h4 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--primary);
  text-shadow: 2px 2px 0px var(--border);
}

.cookie-banner p {
  font-size: 15px;
  font-weight: 700;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn-cookie {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 16px;
  border: 3px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 2px 2px 0px var(--border);
}

.btn-cookie-accept {
  background: var(--accent);
  color: var(--border);
}

.btn-cookie-reject {
  background: var(--primary);
  color: #fff;
}

/* Responsive Breakpoints & Cleanups */
@media (max-width: 1200px) {
  nav.desktop-nav {
    gap: 15px;
  }
  nav.desktop-nav a {
    font-size: 22px;
  }
}

@media (max-width: 1023px) {
  nav.desktop-nav {
    display: none;
  }
  .header-cta-container {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  header {
    height: 60px;
  }
  .header-container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .top-disclaimer-bar {
    font-size: 11px;
    padding: 6px;
    position: relative;
  }
  header {
    top: 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .section-title {
    font-size: 32px;
  }
  .about-header h1, .lobby-hero h1, .blog-hero h1, .safety-header h1 {
    font-size: 38px;
  }
  .contact-layout, .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .tab-btn {
    flex: 1 1 45%;
    text-align: center;
  }
}