
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at top, #2a0036, #0e0014 60%),
    linear-gradient(135deg, #561580, #6a00ff);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}


header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #0f0c29, #1a182f, #1c1c2e);
}
.container.nav {
  display: flex;
  align-items: center;
}

.container.nav .cta:first-of-type {
  margin-left: auto;
}

.container.nav .cta {
  margin-left: 12px;
}


.container.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand span {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-shadow:
    0 0 8px rgba(77, 21, 107, 0.9),
    0 0 18px rgba(28, 6, 46, 0.7);
}


.cta {
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #7a1fba, #47055a);
  box-shadow: 0 10px 25px  #7c449f;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px  #7c449f;
}
.cta{
  margin-left: 12px;
}


.feature-icon {
  margin-right: 6px;
}

.hero {
  padding: 100px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}


.hero-card {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
 
}

.hero-card img {
  width: 360px;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 30px 60px  #7c449f(255, 77, 109, 0.4);
}


.hero-card .meta {
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  width: 320px;
}

.hero-card .tag {
  background: rgba(0,0,0,0.6);
  padding: 10px 14px;
  border-radius: 14px;
}

#reel {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
}


.reel {
  overflow: hidden;
  position: relative;
}

.reel-track {
  display: flex;
  gap: 28px;
  animation: reelTrain 35s linear infinite;
}


.profile-card {
  width: 280px;
  height: 460px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}


.profile-card img {
  width: 100%;
  height: 135%;
  object-fit: cover;
}


.profile-info {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.3),
    transparent
  );
}

.profile-actions {
  display: flex;
  gap: 10px;
}

.profile-actions button {
  flex: 1;
  padding: 8px 0;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.profile-actions .skip {
  background:#7c449f ;
  color: #fff;
}

.profile-actions .like {
  background: #7c449f;
  color: #fff;
}


.reel-controls.overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.reel-btn {
  padding: 10px 16px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.reel-btn:hover {
  background: #7c449f;;
}


@keyframes reelTrain {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


footer {
  padding: 50px 0;
  background: #0b0010;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.footer-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color:white;
}


@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-card img {
    width: 300px;
    height: 440px;
  }
}

.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}


.auth-modal {
  background: #16161a;
  width: 360px;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: pop 0.3s ease;
  position: relative;
}

@keyframes pop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  margin-bottom: 15px;
}

.tab {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  color: #b3b3b8;
  font-weight: 600;
  cursor: pointer;
}

.tab.active {
  color: #fff;
  border-bottom: 2px solid  #7c449f;
}


.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  margin-bottom: 15px;
  text-align: center;
}

.auth-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: none;
  background: #0e0e10;
  color: #fff;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg,  #7c449f);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.terms-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.terms-modal {
  background: #16161a;
  width: 420px;
  max-width: 90%;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.terms-modal h2 {
  margin-bottom: 15px;
  text-align: center;
}

.terms-content p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}
/* Gender Popup Overlay */
.gender-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.gender-popup {
  background: #16161a;
  padding: 30px;
  width: 350px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 30px (135deg,  #7c449f);
  animation: fadeIn 0.6s ease;
}

.gender-popup h2 {
  color: #7c449f;
  margin-bottom: 10px;
}

.gender-popup p {
  color: #b3b3b8;
  margin-bottom: 20px;
  font-size: 14px;
}

.gender-popup label {
  display: block;
  margin-bottom: 8px;
  color: #f5f5f7;
}

.gender-popup select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #1c1c1f;
  border: 1px solid #26262b;
  color: #fff;
  margin-bottom: 15px;
}

.gender-popup select:focus {
  outline: none;
  border-color: 135deg,  #7c449f;
  box-shadow: 0 0 10px 135deg,  #7c449f;
}

.age-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
  color: #b3b3b8;
}

.gender-popup button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg,  #7c449f);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gender-popup button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px 135deg,  #7c449f;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Privacy Policy Overlay */
.privacy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Privacy Modal */
.privacy-modal {
  background: #16161a;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 30px 60px  #7c449f(255, 77, 109, 0.4);
  animation: fadeIn 0.5s ease;
  position: relative;
}

.privacy-modal h2 {
  color: #7c449f;
  margin-bottom: 15px;
  text-align: center;
}

.privacy-content {
  max-height: 60vh;
  overflow-y: auto;
  color: #b3b3b8;
  font-size: 14px;
  line-height: 1.6;
}

.privacy-content h4 {
  margin-top: 15px;
  color: #f5f5f7;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.close-btn:hover {
  color: #7c449f;
}
.brand {
  display: flex;
  align-items: center;
  gap: 6px;        /* 🔥 controls distance between logo & text */
}

.logo {
  width: 38px;     /* adjust size if needed */
  height: auto;
}

.site-title {
  margin: 0;       /* VERY IMPORTANT */
  padding: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;  /* removes extra vertical spacing */
}




