@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800&display=swap");
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/SourceSans3-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/SourceSans3-Bold.ttf") format("truetype");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #fafafa;
  background: radial-gradient(ellipse 1400px 900px at 30% -15%, rgba(166, 255, 0, 0.12), transparent 50%), radial-gradient(circle 600px at 80% 120%, rgba(166, 255, 0, 0.06), transparent 60%), #09090b;
  background-attachment: fixed;
  line-height: 1.6;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fafafa;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.7;
}

strong {
  font-weight: 600;
  color: #fafafa;
}

code {
  background: #0f0f12;
  padding: 2px 8px;
  border-radius: 6px;
  font-family: "SF Mono", "Monaco", "Cascadia Code", "Courier New", monospace;
  font-size: 0.9em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c4ff4d;
}

a {
  color: #a6ff00;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
a:hover {
  color: #c4ff4d;
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid #a6ff00;
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

.container--wide {
  max-width: none;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.gallery--full {
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 4px;
  padding-right: 4px;
  overflow: visible;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(16px, 4vw, 32px);
  background: linear-gradient(180deg, rgba(166, 255, 0, 0.04) 0%, rgba(166, 255, 0, 0.02) 50%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #09090b;
  opacity: 0.7;
  z-index: -1;
}

.brand {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #fafafa;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.brand span {
  color: #a6ff00;
  text-shadow: 0 0 20px rgba(166, 255, 0, 0.4);
}

.brand-link {
  display: block;
  line-height: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-link:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.brand-link:focus-visible {
  outline: 2px solid #a6ff00;
  outline-offset: 4px;
  border-radius: 8px;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .brand-logo {
    height: 28px;
  }
}

.card {
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.95) 0%, rgba(18, 18, 21, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(166, 255, 0, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover {
  border-color: rgba(166, 255, 0, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(166, 255, 0, 0.15);
  transform: translateY(-2px);
}
.card:hover::before {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid rgba(166, 255, 0, 0.5);
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.2) 0%, rgba(166, 255, 0, 0.12) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px rgba(166, 255, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(166, 255, 0, 0.8);
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.3) 0%, rgba(166, 255, 0, 0.18) 100%);
  box-shadow: 0 4px 16px rgba(166, 255, 0, 0.25), 0 0 30px rgba(166, 255, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn:hover::before {
  opacity: 1;
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn:focus-visible {
  outline: 2px solid #a6ff00;
  outline-offset: 3px;
}

.input {
  min-height: 48px;
  width: 100%;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(15, 15, 18, 0.9) 0%, rgba(12, 12, 15, 0.9) 100%);
  color: #fafafa;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
.input::placeholder {
  color: #71717a;
}
.input:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.input:focus {
  outline: none;
  border-color: #a6ff00;
  background: rgb(15, 15, 18);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(166, 255, 0, 0.1), 0 0 20px rgba(166, 255, 0, 0.1);
}

input[type=file] {
  padding: 12px 16px;
  cursor: pointer;
}
input[type=file]::file-selector-button {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #18181b;
  color: #d4d4d8;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 12px;
}
input[type=file]::file-selector-button:hover {
  border-color: #a6ff00;
  background: #1f1f23;
  color: #a6ff00;
}

.hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 200px);
  padding: clamp(40px, 8vh, 100px) clamp(16px, 4vw, 32px);
  position: relative;
}

.hero-title {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin: 0 0 16px;
  font-weight: 800;
  background: linear-gradient(135deg, #fafafa 0%, #d4d4d8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.hero-sub {
  color: #a1a1aa;
  margin: 0 0 32px;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
}

.gallery {
  position: relative;
  width: 100%;
  min-height: 200px;
  padding: 16px 0;
  overflow: visible;
}

.gallery a {
  display: block;
  overflow: hidden;
  position: absolute;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, z-index;
}
.gallery a:hover {
  z-index: 100;
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 2px rgba(166, 255, 0, 0.4), 0 0 40px rgba(166, 255, 0, 0.2);
}
.gallery a:hover .thumb {
  filter: brightness(1.12) contrast(1.05) saturate(1.1);
}
.gallery a:active {
  transform: scale(1.02) translateY(-2px);
}

.thumb {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(135deg, #0e0e12 0%, #0a0a0e 100%);
  cursor: zoom-in;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.thumb[loading=lazy] {
  background: linear-gradient(90deg, #0e0e12 0%, #14141a 20%, #0e0e12 40%, #0e0e12 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.thumb.loaded {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 10000;
  animation: fadeIn 0.2s ease;
}

.lightbox--open {
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox__img-container {
  position: relative;
  display: inline-block;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 60px rgba(166, 255, 0, 0.08);
  animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.lightbox__actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.lightbox__img-container:hover .lightbox__actions {
  opacity: 1;
}

.lightbox__action {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.lightbox__action:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.lightbox__action:active {
  transform: scale(0.95);
}
.lightbox__action svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.8) 0%, rgba(18, 18, 21, 0.8) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fafafa;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 1.25rem;
  font-weight: 300;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.2) 0%, rgba(166, 255, 0, 0.1) 100%);
  border-color: #a6ff00;
  color: #a6ff00;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(166, 255, 0, 0.2);
}
.lightbox__close:active,
.lightbox__prev:active,
.lightbox__next:active {
  transform: scale(0.95);
}

.lightbox__close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
}
@media (max-width: 640px) {
  .lightbox__close {
    top: 16px;
    right: 16px;
  }
}

.lightbox__prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 640px) {
  .lightbox__prev {
    left: 16px;
  }
}
.lightbox__prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox__next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 640px) {
  .lightbox__next {
    right: 16px;
  }
}
.lightbox__next:hover {
  transform: translateY(-50%) scale(1.1);
}

.public-album-card {
  will-change: transform, box-shadow;
}
.public-album-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(166, 255, 0, 0) 0%, rgba(166, 255, 0, 0.4) 50%, rgba(166, 255, 0, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.public-album-card:hover {
  border-color: rgba(166, 255, 0, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(166, 255, 0, 0.2), 0 0 80px rgba(166, 255, 0, 0.15);
  transform: translateY(-8px) scale(1.02);
}
.public-album-card:hover::before {
  opacity: 1;
}
.public-album-card:hover img {
  transform: scale(1.12);
  filter: brightness(1.1) contrast(1.05);
}
.public-album-card:hover > div > div > div:nth-child(2) {
  opacity: 0.3 !important;
}
.public-album-card:hover > div > div:last-child {
  transform: scale(1.05);
  background: rgba(166, 255, 0, 0.2);
  border-color: rgba(166, 255, 0, 0.5);
}
.public-album-card:hover > div:last-child > div:first-child {
  opacity: 1 !important;
}
.public-album-card:hover svg:last-child {
  transform: translateX(4px) !important;
}
.public-album-card:active {
  transform: translateY(-4px) scale(1.01);
}
.public-album-card:focus-visible {
  outline: 2px solid #a6ff00;
  outline-offset: 3px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 3px rgba(166, 255, 0, 0.3);
}

.meta {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.5;
}

.stack {
  display: grid;
  gap: 16px;
}

.admin-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .admin-sections {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.admin-sections > .card:first-child {
  grid-column: 1/-1;
}

.row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

form.inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
}
form.inline .input {
  flex: 1;
  min-width: 250px;
}
form.inline .btn {
  flex-shrink: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUpStagger {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 150px);
    padding: 40px 16px;
  }
  .card {
    padding: 20px;
    border-radius: 12px;
  }
  .btn {
    min-height: 44px;
    padding: 0 20px;
  }
  .input {
    min-height: 44px;
  }
  form.inline {
    flex-direction: column;
  }
  form.inline .input {
    min-width: 100%;
  }
  .row {
    flex-direction: column;
    align-items: stretch;
  }
  .public-album-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}
@media (max-width: 480px) {
  .nav {
    padding: 16px;
  }
  .brand {
    font-size: 1.1rem;
  }
  .gallery--full {
    padding-left: 2px;
    padding-right: 2px;
  }
}
:focus-visible {
  outline: 2px solid #a6ff00;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(16px);
  z-index: 1;
}

.age-gate__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 100%;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.age-gate__card {
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.98) 0%, rgba(18, 18, 21, 0.98) 100%);
  border: 1px solid rgba(166, 255, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 80px rgba(166, 255, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.age-gate__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #a6ff00 50%, transparent 100%);
  opacity: 0.6;
}
@media (max-width: 480px) {
  .age-gate__card {
    padding: 32px 24px;
  }
}

.age-gate__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.15) 0%, rgba(166, 255, 0, 0.08) 100%);
  border: 2px solid rgba(166, 255, 0, 0.3);
  color: #a6ff00;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(166, 255, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.age-gate__icon svg {
  filter: drop-shadow(0 2px 8px rgba(166, 255, 0, 0.3));
}

.age-gate__title {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 800;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #fafafa 0%, #c4ff4d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.age-gate__text {
  color: #d4d4d8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 12px;
  font-weight: 500;
}

.age-gate__subtext {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 32px;
}

.age-gate__form {
  margin-bottom: 20px;
}

.age-gate__dob {
  margin-bottom: 24px;
}

.age-gate__label {
  display: block;
  color: #d4d4d8;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: left;
  letter-spacing: 0.01em;
}

.age-gate__dob-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 400px) {
  .age-gate__dob-inputs {
    gap: 8px;
  }
}

.age-gate__dob-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.age-gate__input {
  width: 100%;
  min-height: 52px;
  padding: 0 12px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(15, 15, 18, 0.95) 0%, rgba(12, 12, 15, 0.95) 100%);
  color: #fafafa;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
  appearance: textfield;
}
.age-gate__input::-webkit-outer-spin-button, .age-gate__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.age-gate__input::placeholder {
  color: #71717a;
  font-weight: 500;
}
.age-gate__input:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.age-gate__input:focus {
  outline: none;
  border-color: #a6ff00;
  background: rgb(15, 15, 18);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(166, 255, 0, 0.15), 0 0 20px rgba(166, 255, 0, 0.15);
}
@media (max-width: 400px) {
  .age-gate__input {
    min-height: 48px;
    font-size: 0.95rem;
    padding: 0 8px;
  }
}

.age-gate__field-label {
  color: #a1a1aa;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.age-gate__error {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  animation: slideUp 0.3s ease;
}

.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 12px;
  border: 2px solid;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.age-gate__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.age-gate__btn svg {
  transition: transform 0.25s ease;
}
.age-gate__btn:focus-visible {
  outline: 2px solid #a6ff00;
  outline-offset: 3px;
}
@media (max-width: 479px) {
  .age-gate__btn {
    min-height: 52px;
    font-size: 0.9rem;
  }
}

.age-gate__btn--yes {
  border-color: rgba(166, 255, 0, 0.6);
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.25) 0%, rgba(166, 255, 0, 0.15) 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(166, 255, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.age-gate__btn--yes::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}
.age-gate__btn--yes:hover {
  border-color: #a6ff00;
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.35) 0%, rgba(166, 255, 0, 0.22) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 255, 0, 0.3), 0 0 40px rgba(166, 255, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.age-gate__btn--yes:hover::before {
  opacity: 1;
}
.age-gate__btn--yes:hover svg {
  transform: scale(1.1);
}
.age-gate__btn--yes:active {
  transform: translateY(0);
}

.age-gate__btn--submit {
  border-color: rgba(166, 255, 0, 0.6);
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.25) 0%, rgba(166, 255, 0, 0.15) 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(166, 255, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.age-gate__btn--submit::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}
.age-gate__btn--submit:hover {
  border-color: #a6ff00;
  background: linear-gradient(135deg, rgba(166, 255, 0, 0.35) 0%, rgba(166, 255, 0, 0.22) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 255, 0, 0.3), 0 0 40px rgba(166, 255, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.age-gate__btn--submit:hover::before {
  opacity: 1;
}
.age-gate__btn--submit:hover svg {
  transform: scale(1.1);
}
.age-gate__btn--submit:active {
  transform: translateY(0);
}

.age-gate__footer {
  color: #71717a;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hot-chocolate-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(139, 69, 19, 0.4);
  background: linear-gradient(135deg, rgba(101, 67, 33, 0.95) 0%, rgba(78, 52, 26, 0.95) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 69, 19, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  user-select: none;
  animation: slideUpFade 0.5s ease 0.5s both;
}
@media (max-width: 768px) {
  .hot-chocolate-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .hot-chocolate-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
    gap: 8px;
  }
}
.hot-chocolate-btn:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(210, 105, 30, 0.7);
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.95) 0%, rgba(101, 67, 33, 0.95) 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 50px rgba(210, 105, 30, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.hot-chocolate-btn:hover .hot-chocolate-icon {
  transform: rotate(-15deg) scale(1.1);
}
.hot-chocolate-btn:active {
  transform: translateY(-1px) scale(1.02);
}
.hot-chocolate-btn:focus-visible {
  outline: 2px solid rgba(210, 105, 30, 0.8);
  outline-offset: 3px;
}

.hot-chocolate-icon {
  font-size: 1.3em;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
@media (max-width: 480px) {
  .hot-chocolate-icon {
    font-size: 1.2em;
  }
}

.hot-chocolate-text {
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 480px) {
  .hot-chocolate-text {
    display: none;
  }
}

.hot-chocolate-text-mobile {
  display: none;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 480px) {
  .hot-chocolate-text-mobile {
    display: inline;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media print {
  .nav,
  .btn,
  .lightbox,
  .age-gate,
  .hot-chocolate-btn {
    display: none !important;
  }
  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
