/* ============================================================
   PAGES.CSS — Consolidated inline styles from 6 HTML pages
   Extracted: 2026-02-09
   Pages: player, checkout, protocol-flow, recover, payment-failed, age-gate
   ============================================================ */


/* === PLAYER PAGE === */

body.page-player {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #050507;
}

.player-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5,5,7,0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.player-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
}

.player-wrapper {
  width: 100%;
  max-width: 900px;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}

.video-container video,
.video-container audio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(90,30,50,0.3) 0%, #0a0a0a 70%);
}

.audio-visual-icon {
  font-size: 80px;
  color: rgba(212,175,55,0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.preview-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: none;
}

.player-controls {
  padding: 30px;
}

.player-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
}

.player-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.progress-container {
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background: #d4af37;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.control-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.control-btn.play {
  width: 70px;
  height: 70px;
  font-size: 1.5rem;
  background: rgba(212,175,55,0.1);
  border-color: #d4af37;
  color: #d4af37;
}

.control-btn.play:hover {
  background: #d4af37;
  color: #0a0a0a;
}

/* Paywall overlay */
.paywall-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,7,0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.paywall-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}

.paywall-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
}

.paywall-cta {
  padding: 16px 50px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1));
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.paywall-cta:hover {
  background: #d4af37;
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}


/* === CHECKOUT PAGE === */

body.page-checkout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 100px 20px 60px;
}

.checkout-container {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.checkout-header {
  text-align: center;
  margin-bottom: 40px;
}

.checkout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
}

.checkout-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Order Summary */
.order-summary {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.order-item:last-child {
  border-bottom: none;
}

.item-name {
  font-size: 0.95rem;
}

.item-price {
  color: #d4af37;
  font-weight: 500;
}

.order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 1.1rem;
}

.total-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.total-price {
  color: #d4af37;
  font-weight: 600;
}

/* Upsell */
.upsell-box {
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 25px;
  margin-bottom: 30px;
}

.upsell-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.upsell-badge {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #d4af37;
  background: rgba(212,175,55,0.15);
  padding: 4px 12px;
}

.upsell-title {
  font-size: 1rem;
  margin-bottom: 8px;
}

.upsell-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.upsell-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.5);
  color: #d4af37;
  font-size: 0.75rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upsell-btn:hover {
  background: rgba(212,175,55,0.1);
}

/* Payment Methods */
.payment-section {
  margin-bottom: 30px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: rgba(255,255,255,0.25);
}

.payment-option.selected {
  border-color: #d4af37;
  background: rgba(212,175,55,0.05);
}

.payment-icon {
  font-size: 1.5rem;
}

.payment-info {
  flex: 1;
}

.payment-name {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.payment-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.payment-badge {
  font-size: 0.6rem;
  letter-spacing: 1px;
  padding: 4px 10px;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

/* Terms */
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.terms-check input {
  margin-top: 3px;
  accent-color: #d4af37;
}

.terms-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.terms-text a {
  color: #d4af37;
}

/* Submit */
.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.90));
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

.submit-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Checkout Nav */
.checkout-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5,5,7,0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}


/* === PROTOCOL FLOW PAGE === */

body.page-protocol-flow {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.protocol-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.step-dot.active {
  background: #d4af37;
  box-shadow: 0 0 15px rgba(212,175,55,0.5);
}

.step-dot.completed {
  background: rgba(212,175,55,0.5);
}

.question-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
  color: #fff;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.option {
  padding: 20px 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.option:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}

.option.selected {
  border-color: #d4af37;
  background: rgba(212,175,55,0.1);
}

.option-label {
  font-weight: 500;
  margin-bottom: 6px;
}

.option-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.btn-back {
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

.btn-next {
  padding: 14px 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-next:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.90));
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

.btn-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Result screen */
.result-screen {
  display: none;
}

.result-world {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: #d4af37;
  margin-bottom: 20px;
}

.result-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.result-cta {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(212,175,55,0.5);
  color: #d4af37;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.result-cta:hover {
  background: #d4af37;
  color: #0a0a0a;
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}

.alt-link {
  margin-top: 30px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.alt-link a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

.hidden { display: none !important; }


/* === RECOVER PAGE === */

body.page-recover {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.recover-container {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.recover-icon {
  font-size: 3rem;
  margin-bottom: 30px;
  opacity: 0.6;
}

.recover-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}

.recover-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.btn-recover {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-bottom: 16px;
}

.btn-recover:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.90));
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

/* Success state */
.success-message {
  display: none;
  padding: 30px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  margin-bottom: 30px;
}

.success-message h3 {
  font-size: 1rem;
  color: #22c55e;
  margin-bottom: 10px;
}

.success-message p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Error state (recover page) */
.error-message {
  display: none;
  padding: 20px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.recover-container .btn-back {
  display: inline-block;
  padding: 14px 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.recover-container .btn-back:hover {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
}

/* Alternative methods */
.alt-methods {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.alt-title {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.alt-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alt-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.alt-option:hover {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

.alt-icon {
  font-size: 1.2rem;
}


/* === PAYMENT FAILED PAGE === */

body.page-payment-failed {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.failed-container {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.failed-icon {
  font-size: 4rem;
  margin-bottom: 30px;
  opacity: 0.7;
}

.failed-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}

.failed-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.error-box {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.error-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(239,68,68,0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* NOTE: .error-message is also defined in RECOVER section above.
   The payment-failed version has identical styles so no override needed. */

.error-code {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-retry {
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
}

.btn-retry:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.90));
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

.btn-alt {
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  color: #d4af37;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.btn-alt:hover {
  background: rgba(212,175,55,0.1);
  border-color: #d4af37;
}

.failed-container .btn-back {
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.failed-container .btn-back:hover {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
}

/* Help section */
.help-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.help-title {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.help-tips {
  text-align: left;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}

.help-tips li {
  margin-bottom: 8px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-link:hover {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}


/* === AGE GATE PAGE === */

body.page-age-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(90, 20, 60, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 30%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #060608 0%, #0a070a 50%, #050507 100%);
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.85);
  padding: 20px;
}

body.page-age-gate * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.age-gate {
  max-width: 480px;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.age-gate .logo {
  width: 100px;
  margin-bottom: 40px;
  opacity: 0.85;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.3));
}

.age-gate h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.02em;
}

.age-gate .message {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.age-gate .buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
  margin: 0 auto;
}

.btn-enter {
  padding: 18px 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
}

.btn-enter:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.90));
  border-color: rgba(255,255,255,0.9);
  color: #0a0a0a;
  box-shadow:
    0 0 30px rgba(255,255,255,0.5),
    0 0 60px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-leave {
  padding: 14px 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.btn-leave:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
}

.age-gate .legal {
  margin-top: 50px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

.age-gate .legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
}
