/* Base styles */
:root {
  --primary-color: white;
  --text-light: rgba(255, 255, 255, 0.87);
  --bg-dark: #000;
}

body {
  margin: 0;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
  color: var(--text-light);
  background-color: var(--bg-dark);
  overflow-x: hidden;
  overflow-y: scroll;
}

.container {
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

/* Logo and branding */
.logo {
  width: 40%;
  margin-bottom: 2rem;
}

.age-restriction {
  width: 60%;
  margin-bottom: 2.01rem;

}


/* Buttons */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn, .btn-custom {
  display: inline-block;
  padding: 0.6em 1.6em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  width: 100%;
  box-sizing: border-box;
}

.btn-primary, .btn-primary-custom {
  background-color: #fff;
  color: black;
}

/*
.btn-primary:hover {
}*/

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Form elements */
.form-group {
  margin-bottom: 0rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  box-sizing: border-box;
}

.password-input {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.toggle-password:hover {
  opacity: 1;
}

.toggle-password img {
  width: 20px;
  height: 20px;
}

/* Navigation */
.back-link {
    background-color:transparent !important;
    border:none !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
  margin-bottom: 2rem;
  cursor: pointer;
}

.back-link:hover {
  opacity: 1;
}

.back-arrow {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Utilities */
.disclaimer {
  font-size: 0.9em;
  opacity: 0.6;
  margin: 0;
}

.dark-theme {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    width: 60%;
  }

  .age-restriction {
    width: 80%;
  }

  .container {
    padding: 0rem;
  }
}