/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
}

body {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.age-modal-content {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #ff6b6b;
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
  max-width: 400px;
  width: 90%;
}

.age-modal h2 {
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.age-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-yes {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
}

.age-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

.age-no {
  background: #444;
  color: #ccc;
}

.age-no:hover {
  background: #555;
  transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  padding: 1rem 0;
  z-index: 9999;
  border-top: 2px solid #ff6b6b;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: #ff6b6b;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-accept {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid #ff6b6b;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2001;
  position: relative;
}

.burger-label span {
  width: 25px;
  height: 3px;
  background: #ff6b6b;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.burger-checkbox:checked + .burger-label span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-checkbox:checked + .burger-label span:nth-child(2) {
  opacity: 0;
}

.burger-checkbox:checked + .burger-label span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 2px solid #ff6b6b;
  z-index: 2000;
}

.burger-checkbox:checked ~ .nav {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid #444;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.nav-link:hover {
  color: #ff6b6b;
  padding-left: 0.5rem;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.interface-mockup {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border: 2px solid #ff6b6b;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.interface-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 107, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.mockup-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff6b6b;
}

.mockup-status {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.mockup-body {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item .label {
  color: #ccc;
}

.info-item .value {
  color: #ff6b6b;
  font-weight: 600;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Overview Section */
.overview {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.overview-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.overview-image {
  width: 100%;
}

.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 2px solid #ff6b6b;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  object-fit: cover;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.features-image {
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #ff6b6b;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.features-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #ff6b6b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  min-width: 60px;
  text-align: center;
}

.feature-content h3 {
  color: #ff6b6b;
  margin-bottom: 0.5rem;
}

.feature-content p {
  margin: 0;
  opacity: 0.8;
}

/* Progress Section */
.progress {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.progress-image {
  max-width: 1000px;
  margin: 0 auto 3rem;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #ff6b6b;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.progress-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.progress-roadmap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border-radius: 15px;
  border: 2px solid #444;
  position: relative;
  overflow: hidden;
}

.progress-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 107, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-step.active::before {
  opacity: 1;
  animation: shimmer 3s infinite;
}

.progress-step.completed {
  border-color: #4caf50;
}

.progress-step.active {
  border-color: #ff6b6b;
}

.progress-step.upcoming {
  border-color: #666;
  opacity: 0.7;
}

.step-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.progress-step.completed .step-marker {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
}

.progress-step.active .step-marker {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  animation: pulse 2s infinite;
}

.progress-step.upcoming .step-marker {
  background: #444;
  color: #ccc;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.step-content h3 {
  color: #ff6b6b;
  margin-bottom: 0.5rem;
}

.step-content p {
  margin: 0;
  opacity: 0.8;
}

/* Sneak Peek Section */
.sneak-peek {
  padding: 120px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
}

.sneak-peek-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sneak-peek-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.sneak-peek-content {
  position: relative;
  z-index: 1;
}

.sneak-peek-content h2 {
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.sneak-peek-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

/* Updates Section */
.updates {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.updates-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #444;
}

.faq-item h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.faq-item p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-form {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #444;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ff6b6b;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #444;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b6b;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
}

.checkbox-group a {
  color: #ff6b6b;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  padding: 2rem 0;
  border-top: 2px solid #ff6b6b;
}

.footer-content {
  text-align: center;
}

.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-main span {
  color: #ff6b6b;
  font-weight: 600;
}

.separator {
  color: #666;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b6b;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-nav a:hover {
  color: #ff6b6b;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  margin-top: 1rem;
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #ccc;
}

.ssl-note {
  font-size: 0.8rem !important;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .age-modal-content {
    padding: 2rem;
    margin: 1rem;
  }

  .progress-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .footer-main,
  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav {
    width: 100%;
  }

  .progress-image,
  .features-image {
    margin-bottom: 2rem;
  }

  .sneak-peek {
    min-height: 400px;
    padding: 80px 0;
  }
}

/* Show burger menu on all devices */
@media (min-width: 769px) {
  .burger-label {
    display: flex;
  }

  .nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .overview,
  .features,
  .progress,
  .updates,
  .faq,
  .contact {
    padding: 60px 0;
  }

  .sneak-peek {
    padding: 80px 0;
  }

  .interface-mockup {
    padding: 1.5rem;
  }

  .mockup-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Utility Classes */
.loading-lazy {
  loading: lazy;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}
