/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-primary: #8B1538; /* бардово-розовый */
  --bg-secondary: #6B0F3E; /* темный бардовый */
  --color-primary: #E91E63; /* фиолетово-розовый */
  --color-secondary: #C2185B; /* розовый */
  --color-accent: #FF4081; /* яркий розовый */
  --text-light: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-muted: rgba(255, 255, 255, 0.8);
  --border-color: rgba(233, 30, 99, 0.3);
  --shadow: 0 4px 20px rgba(139, 21, 56, 0.3);
  --shadow-hover: 0 8px 30px rgba(233, 30, 99, 0.4);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Age Verification Modal */
.age-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-modal-content {
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.98) 0%, rgba(107, 15, 62, 0.98) 100%);
  border: 3px solid var(--color-primary);
  border-radius: 25px;
  padding: 3rem 2.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(233, 30, 99, 0.3);
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.age-modal-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.age-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 1.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.age-modal-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 2.5rem 0;
  line-height: 1.7;
}

.age-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.age-btn-yes {
  background: var(--color-primary);
  color: var(--text-light);
  border: 2px solid var(--color-primary);
}

.age-btn-yes:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
}

.age-btn-no {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.age-btn-no:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

/* Header Styles */
header {
  background: rgba(139, 21, 56, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--border-color);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: 0 1rem;
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-auth {
  padding: 0.625rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-login {
  color: var(--text-light);
  background: transparent;
  border-color: var(--text-light);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-register {
  color: var(--text-light);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-register:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 64, 129, 0.4);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo-wrapper img {
  max-height: 50px;
  width: auto;
  height: auto;
}

/* Menu Toggle Button (Burger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
  z-index: 1001;
  position: absolute;
  right: 0;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

nav.main-nav {
  display: block;
}

nav.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav.main-nav .header-auth-mobile {
  display: none;
}

nav.main-nav li {
  list-style: none;
}

nav.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

nav.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

nav.main-nav a:hover {
  color: var(--color-accent);
  background: rgba(255, 64, 129, 0.1);
}

nav.main-nav a:hover::before {
  width: 80%;
}

/* Main Content */
main {
  flex: 1;
  width: 100%;
  padding: 2rem 0;
}

.main-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 2rem;
  padding: 0 2rem;
  align-items: start;
}

.main-content {
  min-width: 0;
}

.sidebar-left,
.sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: rgba(233, 30, 99, 0.1);
  border: 2px solid rgba(233, 30, 99, 0.3);
  border-radius: 15px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
  text-align: center;
}

.sidebar-promo:hover {
  background: rgba(233, 30, 99, 0.2);
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

.sidebar-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.sidebar-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-margin-top: 100px;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

section h1 {
  color: var(--color-accent);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

section h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

section h2:first-child {
  margin-top: 0;
}

section p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

section ul, section ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

section li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Banner Styles */
.banner {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.banner:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.5);
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.banner:first-of-type {
  margin-top: 0;
  margin-bottom: 3rem;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

thead {
  background: var(--color-primary);
}

th {
  padding: 1.25rem;
  text-align: left;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 1rem;
}

tbody tr {
  transition: background 0.3s ease;
}

tbody tr:hover {
  background: rgba(233, 30, 99, 0.1);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ Accordion Styles */
.faq-section {
  margin-top: 2rem;
}

.faq-accordion {
  margin-top: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 30, 99, 0.2);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--color-primary);
  color: var(--text-light);
  transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] {
  color: var(--color-accent);
  border-bottom: 1px solid var(--border-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer-content {
  padding: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
}

.faq-question[aria-expanded="true"] + .faq-answer .faq-answer-content {
  opacity: 1;
}

/* Footer Styles */
footer {
  background: linear-gradient(180deg, rgba(107, 15, 62, 0.98) 0%, rgba(139, 21, 56, 0.95) 100%);
  backdrop-filter: blur(10px);
  margin-top: 4rem;
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 -8px 30px rgba(139, 21, 56, 0.5);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.5;
}

.footer-main {
  padding: 3.5rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-about {
  max-width: 350px;
}

.footer-logo img {
  max-height: 45px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: brightness(1.1);
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.footer-title {
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--color-accent);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 1rem 0 0 0;
  padding: 1rem;
  background: rgba(233, 30, 99, 0.1);
  border-left: 3px solid var(--color-primary);
  border-radius: 8px;
}

.age-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-bottom {
  background: rgba(107, 15, 62, 1);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
}

.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-warning {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-container {
    grid-template-columns: 150px 1fr 150px;
    gap: 1.5rem;
  }

  .sidebar-promo {
    padding: 1.25rem 0.75rem;
  }

  .sidebar-icon {
    font-size: 1.75rem;
  }

  .sidebar-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .header-container {
    gap: 1.5rem;
  }

  nav.main-nav ul {
    gap: 1.25rem;
  }

  nav.main-nav a {
    font-size: 0.95rem;
    padding: 0.5rem 0.95rem;
  }

  .btn-auth {
    padding: 0.6rem 1.3rem;
    font-size: 0.92rem;
  }

  .main-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .sidebar-left,
  .sidebar-right {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .header-container {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 0 1rem;
  }

  .header-auth {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-wrapper img {
    max-height: 45px;
  }

  nav.main-nav ul {
    gap: 1.5rem;
  }

  nav.main-nav a {
    font-size: 0.95rem;
    padding: 0.45rem 0.9rem;
  }

  .btn-auth {
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
  }

  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(139, 21, 56, 0.98);
    backdrop-filter: blur(10px);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    z-index: 1000;
  }

  nav.main-nav.menu-open {
    display: block;
  }

  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  nav.main-nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  nav.main-nav li:last-child {
    border-bottom: none;
  }

  nav.main-nav a {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 1rem 0.8rem;
    text-align: left;
  }

  nav.main-nav a::before {
    display: none;
  }

  nav.main-nav .header-auth-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
  }

  nav.main-nav .header-auth-mobile .btn-auth {
    width: 100%;
    justify-content: center;
  }

  nav.main-nav ul {
    margin-bottom: 0;
  }

  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 1.25rem;
  }

  .faq-answer-content {
    font-size: 1rem;
  }

  .age-modal-content {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .age-modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .age-modal-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .age-modal-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .age-modal-buttons {
    flex-direction: column;
  }

  .age-btn {
    width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    min-width: auto;
  }

  main {
    padding: 1rem 0;
  }

  .main-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .sidebar-left,
  .sidebar-right {
    display: none;
  }

  section {
    padding: 1.5rem;
    border-radius: 15px;
  }

  section h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section p,
  section li {
    font-size: 1rem;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.8rem;
  }

  .banner {
    margin: 1.5rem 0;
    border-radius: 15px;
  }

  .footer-main {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-bottom {
    padding: 1.25rem 1.5rem;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.75rem;
  }

  .header-container {
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .logo-wrapper img {
    max-height: 38px;
  }

  nav.main-nav {
    margin-top: 0.5rem;
    padding: 1rem;
  }

  nav.main-nav a {
    font-size: 0.95rem;
    padding: 0.9rem 0.75rem;
  }

  .header-auth-mobile .btn-auth {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  section h1 {
    font-size: 1.75rem;
  }

  section h2 {
    font-size: 1.35rem;
  }

  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 25px;
    height: 25px;
    font-size: 1.25rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 1rem;
  }

  .faq-answer-content {
    font-size: 0.95rem;
  }

  .footer-main {
    padding: 2rem 1rem 1.25rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-column {
    gap: 1rem;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .age-restriction {
    font-size: 0.85rem;
    padding: 0.875rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .age-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding: 1rem;
  }

  .footer-copyright,
  .footer-warning {
    font-size: 0.8rem;
  }

  .age-modal-content {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .age-modal-icon {
    font-size: 2.5rem;
  }

  .age-modal-title {
    font-size: 1.35rem;
  }

  .age-modal-text {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .age-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

/* Bottom CTA Banner */
.bottom-cta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.98) 0%, rgba(194, 24, 91, 0.98) 100%);
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  z-index: 997;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.bottom-cta-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.bottom-cta-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2rem;
}

.bottom-cta-text {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.bottom-cta-button {
  background: var(--text-light);
  color: var(--color-primary);
  padding: 0.875rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  display: inline-block;
}

.bottom-cta-button:hover {
  background: var(--color-accent);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.5);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }

  .bottom-cta-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-align: center;
  }

  .bottom-cta-text {
    font-size: 1rem;
  }

  .bottom-cta-button {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }

  .bottom-cta-content {
    padding: 0.875rem 1rem;
    gap: 0.875rem;
  }

  .bottom-cta-text {
    font-size: 0.95rem;
  }

  .bottom-cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

