/*
  VogueSpace Premium Landing Page Styles
  Responsive, modern, elegant OnlyFans-style UI
*/
.btn-gradient a,
.btn-outline a,
.btn-primary a,
.btn-secondary a,
.drops-btn a,
.pricing-btn a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  font-size: inherit;
  display: inline-block;
}
.btn-gradient a:hover,
.btn-outline a:hover,
.btn-primary a:hover,
.btn-secondary a:hover,
.drops-btn a:hover,
.pricing-btn a:hover {
  color: inherit;
  text-decoration: none;
}
.no-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #181828;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: #1a1a2e;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-left {
  display: flex;
  align-items: center;
}
.profile-img-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e94057 0%, #8a2387 100%);
  margin-right: 0.8rem;
  box-shadow: 0 0 0 2px #fff2;
}
.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}
.brand-gradient {
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.navbar-center {
  display: flex;
  gap: 2rem;
}
.navbar-center a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.navbar-center a:hover {
  color: #e94057;
}

.navbar-right .login-btn {
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #e9405733;
  transition: background 0.2s;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
  align-items: center;
  background: url('public/6.jpg') center center/cover no-repeat;
}
.hero-img-placeholder {
  width: 180px;
  height: 240px;
  background: #22223a;
  border-radius: 18px;
  filter: blur(16px);
  opacity: 0.7;
  margin: 1vw;
  box-shadow: 0 4px 32px #0008;
  background: transparent;
  opacity: 0.0;
  box-shadow: none;
}
.hero-video-placeholder {
  width: 320px;
  height: 180px;
  background: #22223a;
  border-radius: 18px;
  filter: blur(18px);
  opacity: 0.7;
  margin: 1vw;
  box-shadow: 0 4px 32px #0008;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #fff2;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #181828 60%, #8a2387 100%);
  opacity: 0.79;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.65);
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px #e9405733;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0.5rem 0 1.2rem 0;
  line-height: 1.2;
  color: rgba(255,255,255,0.7);
}
.hero-gradient {
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero-subtext {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.price-crossed {
  text-decoration: line-through;
  color: #fff7;
  font-size: 1.1rem;
  margin-right: 0.3rem;
}
.price {
  color: #e94057;
  font-weight: 700;
  font-size: 1.25rem;
}

.btn-gradient {
  padding: 0.9rem 2.2rem;
  margin-bottom: 2rem;
  font-size: 1.18rem;
  border-radius: 32px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px #e9405733;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #8a2387 0%, #e94057 100%);
}
.btn-outline {
  background: transparent;
  color: #e94057;
  border: 2px solid #e94057;
  border-radius: 24px;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: #8a2387;
  color: #8a2387;
}

.features-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem 0 2rem 0;
  flex-wrap: wrap;
}
.feature-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}
.feature-icon span {
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.3rem;
  box-shadow: 0 2px 8px #e9405733;
}

.drops-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem 1.5rem;
  text-align: center;
}
.drops-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.drops-subtitle {
  color: #fff9;
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}
.drops-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.drop-card {
  position: relative;
  width: 220px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #22223a;
  box-shadow: 0 4px 32px #0008;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.drop-blur {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #22223a;
  filter: blur(16px);
  opacity: 0.7;
  z-index: 1;
}
.drop-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #181828 60%, #8a2387 100%);
  opacity: 0.85;
  z-index: 2;
}
.drop-lock {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #fff;
  z-index: 3;
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.drop-type {
  position: absolute;
  bottom: 60px;
  left: 0; width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 3;
}
.drop-caption {
  position: absolute;
  bottom: 10px;
  left: 0; width: 100%;
  text-align: center;
  color: #fff9;
  font-size: 0.7rem;
  z-index: 3;
}
.drops-btn {
  width: 100%;
  font-size: 1.18rem;
  padding: 1.1rem 1.7rem;
  border-radius: 32px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px #e9405733;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

/* Modern Premium Pricing Section */
.pricing-section {
  max-width: 480px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem 1.5rem;
  text-align: center;
  background: none;
}
.pricing-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.pricing-subtext {
  color: #fff9;
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  font-weight: 500;
}
.pricing-card {
  background: rgba(34,34,58,0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(233,64,87,0.12), 0 1.5px 8px 0 #8a2387aa;
  padding: 2.5rem 2rem 2rem 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(233,64,87,0.12);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover {
  box-shadow: 0 12px 40px 0 rgba(233,64,87,0.18), 0 2px 12px 0 #8a2387cc;
  transform: translateY(-4px) scale(1.02);
}
.pricing-plan {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pricing-price .price-crossed {
  text-decoration: line-through;
  color: #fff7;
  font-size: 1.15rem;
  margin-right: 0.3rem;
}
.pricing-price .price {
  color: #e94057;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
}
.pricing-month {
  color: #fff9;
  font-size: 1.15rem;
  font-weight: 500;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.7rem 0;
  text-align: left;
}
.pricing-features li {
  margin-bottom: 0.8rem;
  font-size: 1.08rem;
  color: #fff;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
}

.pricing-btn {
  width: 100%;
  font-size: 1.18rem;
  padding: 1.1rem 0;
  border-radius: 32px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, #e94057 0%, #8a2387 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px #e9405733;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.pricing-btn:hover {
  background: linear-gradient(90deg, #8a2387 0%, #e94057 100%);
  transform: scale(1.03);
}
.pricing-footer {
  color: #fff9;
  font-size: 1.05rem;
  margin-top: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.footer {
  background: #1a1a2e;
  color: #fff;
  padding: 2.5rem 1.5rem 1.2rem 1.5rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-left {
  flex: 1 1 220px;
}
.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.footer-desc {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff9;
  font-size: 0.98rem;
}
.footer-list li {
  margin-bottom: 0.5rem;
}
.footer-middle, .footer-right {
  flex: 1 1 160px;
}
.footer-title {
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #fff9;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #e94057;
}
.footer-bottom {
  margin-top: 2rem;
  text-align: center;
}
.footer-line {
  color: #fff7;
  font-size: 0.98rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    gap: 0;
    padding: 1rem;
  }
  .navbar-center {
    display: none !important;
  }
  .navbar-left {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .navbar-right {
    display: flex;
    align-items: center;
    }
    .navbar-right .login-btn {
      padding: 0.4rem 1rem;
      font-size: 0.95rem;
      border-radius: 16px;
  }
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .drops-cards {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .hero-bg {
    background: url('public/7.jpeg') center center/cover no-repeat;
    background-position: center top;
    background-size: cover;
    min-height: 320px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-img-placeholder, .hero-video-placeholder {
    width: 120px;
    height: 80px;
  }
  .drops-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
  }
  .drop-card {
    width: 100%;
    height: 200px;
    margin: 0;
  }
  .pricing-section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .footer {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    }
    .navbar-right .login-btn {
      padding: 0.3rem 0.7rem;
      font-size: 0.85rem;
      border-radius: 14px;
  }
}
