:root {
  --maple-red: #c8102e;
  --maple-white: #ffffff;
  --maple-dark: #1a1a1a;
  --maple-gold: #d4af37;
  --maple-light-gray: #f5f5f5;
  --maple-border: #e0e0e0;
}

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

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--maple-dark);
  background: var(--maple-white);
}

.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-verification-modal {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.age-verification-modal .maple-leaf-icon {
  font-size: 4rem;
  color: var(--maple-red);
  margin-bottom: 1rem;
}

.age-verification-modal h2 {
  color: var(--maple-red);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.age-verification-modal p {
  margin-bottom: 2rem;
  color: #555;
}

.age-verification-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-btn-confirm {
  background: var(--maple-red);
  color: white;
}

.age-btn-confirm:hover {
  background: #a00d24;
  transform: translateY(-2px);
}

.age-btn-decline {
  background: #6c757d;
  color: white;
}

.age-btn-decline:hover {
  background: #5a6268;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--maple-dark);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--maple-red);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--maple-red);
  color: white;
}

.cookie-btn-accept:hover {
  background: #a00d24;
}

.cookie-btn-decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--maple-red);
  text-decoration: none;
}

.navbar-brand i {
  font-size: 2rem;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
}

.navbar-menu li {
  margin: 0;
}

.navbar-menu a {
  color: var(--maple-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
}

.navbar-menu a:hover {
  color: var(--maple-red);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--maple-red);
  cursor: pointer;
}

.btn-primary {
  background: var(--maple-red);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--maple-red);
}

.btn-primary:hover {
  background: #a00d24;
  border-color: #a00d24;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--maple-red);
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--maple-red);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--maple-red);
  color: white;
}

.hero {
  background: linear-gradient(
      135deg,
      rgba(200, 16, 46, 0.95) 0%,
      rgba(139, 0, 0, 0.95) 100%
    ),
    url("img/hero-bg.png") center/cover no-repeat;

  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(15deg);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.hero-feature i {
  color: var(--maple-gold);
  font-size: 1.2rem;
}

.info-banner {
  background: var(--maple-light-gray);
  padding: 1rem 2rem;
  text-align: center;
  border-bottom: 3px solid var(--maple-red);
}

.info-banner p {
  margin: 0;
  color: var(--maple-dark);
  font-weight: 500;
}

.info-banner strong {
  color: var(--maple-red);
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--maple-red);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h3 {
  color: var(--maple-red);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  list-style: none;
}

.about-features li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--maple-light-gray);
  border-left: 4px solid var(--maple-red);
  border-radius: 5px;
}

.about-features i {
  color: var(--maple-red);
  margin-right: 0.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--maple-red);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--maple-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  color: var(--maple-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--maple-light-gray);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--maple-red);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--maple-dark);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #666;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maple-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--maple-light-gray);
}

.faq-question.active {
  color: var(--maple-red);
  background: var(--maple-light-gray);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--maple-red);
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.8;
}

.responsible-section {
  background: var(--maple-light-gray);
}

.responsible-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.principles-list,
.warning-signs {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.principles-list h3,
.warning-signs h3 {
  color: var(--maple-red);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.principles-list ul,
.warning-signs ul {
  list-style: none;
}

.principles-list li,
.warning-signs li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--maple-border);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.principles-list li:last-child,
.warning-signs li:last-child {
  border-bottom: none;
}

.principles-list i {
  color: #28a745;
  margin-top: 0.2rem;
}

.warning-signs i {
  color: #dc3545;
  margin-top: 0.2rem;
}

.support-box {
  grid-column: 1 / -1;
  background: var(--maple-red);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.support-box h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.support-box p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.support-box a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
}

.cta-section {
  background: linear-gradient(
      135deg,
      rgba(200, 16, 46, 0.92) 0%,
      rgba(139, 0, 0, 0.92) 100%
    ),
    url("img/cta-bg.png") center/cover no-repeat;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-cta-primary {
  background: white;
  color: var(--maple-red);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-cta-secondary:hover {
  background: white;
  color: var(--maple-red);
}

.footer {
  background: #1a2332;
  color: white;
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-brand i {
  font-size: 2rem;
  color: var(--maple-red);
}

.footer-brand span {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 900px;
}

.footer-description a {
  color: #4db8ff;
  text-decoration: none;
  font-weight: 600;
}

.footer-description a:hover {
  text-decoration: underline;
}

.footer-links-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-section {
  grid-column: 1;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: white;
  padding-left: 0.3rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.footer-logo-item {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-logo-item:hover {
  transform: scale(1.05);
}

.footer-logo-item img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo-item img:hover {
  opacity: 1;
}

.age-badge-footer {
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0;
  border-radius: 50%;
  border: 3px solid var(--maple-red);
  text-align: center;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.label-nav {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-pages a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-pages a:hover {
  color: white;
}

.logo-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.logo-trust img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logo-trust img:hover {
  opacity: 1;
}

.age18 {
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0;
  border-radius: 50%;
  border: 3px solid var(--maple-red);
  text-align: center;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-item {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-logo-item:hover {
  transform: scale(1.05);
}

.footer-logo-item img {
  max-height: 35px;
  max-width: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-logo-item:nth-child(5) {
  flex-basis: 100%;
}

.footer-logo-item:nth-child(5) img {
  max-height: 40px;
}

.age-badge-footer {
  background: var(--maple-red);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0;
  border-radius: 50%;
  border: 2px solid white;
  text-align: center;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-warning {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-warning i {
  color: #ffa500;
}

.footer-bottom p {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-company {
  font-weight: 600;
  margin-top: 1rem;
}

.footer-trademark {
  font-size: 0.85rem;
  opacity: 0.7;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maple-red) 0%, #8b0000 100%);
  padding: 2rem;
}

.auth-box {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 450px;
  width: 100%;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  color: var(--maple-red);
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: #666;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--maple-dark);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--maple-border);
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--maple-red);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.btn-auth {
  width: 100%;
  padding: 1rem;
  background: var(--maple-red);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-auth:hover {
  background: #a00d24;
  transform: translateY(-2px);
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--maple-border);
}

.auth-footer a {
  color: var(--maple-red);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-header h1 {
  color: var(--maple-red);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2 {
  color: var(--maple-red);
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}

.legal-content h3 {
  color: var(--maple-dark);
  margin: 1.5rem 0 0.8rem;
  font-size: 1.3rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
}

.legal-content ul {
  margin: 1rem 0 1rem 2rem;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #555;
}

@media (max-width: 968px) {
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.active {
    left: 0;
  }

  .navbar-toggle {
    display: block;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .responsible-content {
    grid-template-columns: 1fr;
  }

  .footer-links-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav-columns {
    grid-template-columns: 1fr;
  }

  .footer-nav-section {
    grid-column: 1;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-cta {
    width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .footer-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }

  .footer-logo-item:last-child {
    grid-column: 1 / -1;
  }
}
