/* RESET & BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  background-color: #7b4ded; /* Vivid Purple Background */
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* MAIN CONTAINER */
.age-gate-container {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-gate-card {
  text-align: center;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* BRAND LOGO & TITLE */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  cursor: pointer;
}

.leaf-logo {
  max-width: 300px;
}

.brand-title {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #3b2866; /* Dark Purple Icon Background */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icon:hover {
  background-color: #2b1b4f;
  transform: translateY(-2px);
  cursor: pointer;
}

/* PROMPT TEXT */
.age-prompt {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.2px;
}

/* ACTION BUTTONS */
.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.btn {
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 150px;
  text-align: center;
  font-family: inherit;
}

/* Solid Purple Button */
.btn-solid {
  background-color: #3b2b63; /* Dark Navy-Purple Fill */
  color: #ffffff;
  border: 1px solid #3b2b63;
}

.btn-solid:hover {
  background-color: #2b1d4c;
  border-color: #2b1d4c;
}

/* Outline Button */
.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* UNDERAGE ERROR ALERT */
.underage-alert {
  display: none;
  margin-top: 25px;
  padding: 12px 20px;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #ffffff;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 480px) {
  .brand-title {
    font-size: 1.8rem;
  }

  .age-prompt {
    font-size: 1.05rem;
    padding: 0 10px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .btn {
    width: 80%;
    max-width: 280px;
  }
}