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

body {
  font-family: "Montserrat", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  width: 100%;
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 3rem;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  background: linear-gradient(135deg, #ffd1dc 0%, #ff69b4 50%, #ff1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.highlight {
  background: linear-gradient(135deg, #ffd1dc 0%, #ff69b4 50%, #ff1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: #d4d4d4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.location-icon {
  width: 18px;
  height: 18px;
  color: #ff69b4;
}

.location span {
  font-size: 0.9rem;
  color: #e0e0e0;
}

/* Card with Background */
.card-with-background {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 32px;
  overflow: hidden;
  height: 600px;
  width: 100%;
}

.background-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-photo .showcase-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(255, 20, 147, 0.15) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Access Card */
.access-card {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 10, 10, 0.7);
  border: 2px solid rgba(255, 105, 180, 0.5);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
  max-width: 500px;
  width: calc(100% - 4rem);
}

.access-card:hover {
  border-color: rgba(255, 105, 180, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 105, 180, 0.3);
  transform: translate(-50%, calc(-50% - 4px));
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.card-description {
  font-size: 1rem;
  color: #b4b4b4;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Checkbox */
.checkbox-container {
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-input:checked + .checkbox-custom {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border-color: #ff69b4;
}

.checkbox-input:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.95rem;
  color: #d4d4d4;
}

/* Continue Button */
.continue-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.continue-btn:disabled {
  background: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  opacity: 0.5;
}

.continue-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.4);
}

.continue-btn:not(:disabled):active {
  transform: translateY(0);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.continue-btn:not(:disabled):hover .btn-arrow {
  transform: translateX(4px);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 105, 180, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9rem;
  color: #d4d4d4;
  font-weight: 500;
}

/* Background Effects */
.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at 50% 30%,
      rgba(255, 20, 147, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(255, 105, 180, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
  pointer-events: none;
}

.background-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 105, 180, 0.2) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 20, 147, 0.15) 0%,
    transparent 70%
  );
  bottom: -150px;
  right: -150px;
  animation-delay: 7s;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 182, 193, 0.1) 0%,
    transparent 70%
  );
  top: 50%;
  right: 10%;
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Logo Link */
.logo-link {
  text-decoration: none;
}

/* Page Content */
.page-content {
  margin-bottom: 3rem;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffd1dc 0%, #ff69b4 50%, #ff1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #b4b4b4;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.content-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Privacy Policy Styles */
.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-text {
  color: #d4d4d4;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  color: #d4d4d4;
}

.policy-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.8;
}

.policy-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff69b4;
  font-weight: bold;
}

.inline-link {
  color: #ff69b4;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.inline-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ff69b4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.inline-link:hover {
  color: #ff1493;
}

.inline-link:hover::after {
  opacity: 1;
}

/* Contact Form Styles */
.contact-form {
  margin-bottom: 3rem;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ff69b4;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

/* Private Page Styles */
.age-notice {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.3);
  border-radius: 12px;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.notice-icon {
  width: 24px;
  height: 24px;
  color: #ff69b4;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.age-notice p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.private-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.private-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.4);
}

.private-link:active {
  transform: translateY(0);
}

.private-link .btn-arrow {
  transition: transform 0.3s ease;
}

.private-link:hover .btn-arrow {
  transform: translateX(4px);
}

.back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #b4b4b4;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.75rem;
}

.back-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.back-link:hover {
  color: #ff69b4;
}

.back-link:hover .back-arrow {
  transform: translateX(-4px);
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 24px;
  height: 24px;
  color: #ff69b4;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.info-text p {
  font-size: 0.9rem;
  color: #b4b4b4;
  line-height: 1.6;
}

/* Footer */
.footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-link {
  color: #b4b4b4;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #ff69b4;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }

  .card-with-background {
    height: 700px;
  }

  .access-card {
    width: calc(100% - 3rem);
    padding: 2rem 1.5rem;
  }

  .access-card,
  .content-card {
    padding: 2rem 1.5rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-separator {
    display: none;
  }
}
