:root {
  --primary-pink: #ff4d94;
  --secondary-pink: #ff85b3;
  --dark-pink: #330014;
  --bg-dark: #0f0f0f;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-main: #ffffff;
  --text-muted: #b0b0b0;
  --accent-gradient: linear-gradient(135deg, #ff4d94, #ff85b3);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Layout --- */
#app {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

#main-content {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 80px; /* Space for nav */
}

/* --- Navigation --- */
nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
  border-top: 1px solid var(--glass-border);
  z-index: 1000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  font-size: 12px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-item.active {
  color: var(--primary-pink);
}

.nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

/* --- Rent Me (Cards) --- */
.card-stack {
  position: relative;
  height: calc(100vh - 150px);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-card {
  position: absolute;
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  cursor: grab;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s ease;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
}

.profile-card::-webkit-scrollbar {
  display: none;
}

.profile-card.expanded {
  height: 95%;
  max-height: none;
  overflow-y: auto;
  z-index: 100;
}

.card-main {
  position: relative;
  height: 100%;
  min-height: 100%;
  flex-shrink: 0;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  color: white;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.profile-name {
  font-size: 26px;
  font-weight: 700;
}

.card-expanded-content {
  padding: 0 25px 25px;
  background: var(--bg-dark);
  display: none;
}

.profile-card.expanded .card-expanded-content {
  display: block;
}

.profile-card.expanded .profile-info {
  position: relative;
  background: var(--bg-dark);
  padding-bottom: 10px;
}

.tagline {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #fff;
  opacity: 0.9;
}

.expand-btn {
  position: absolute;
  right: 20px;
  bottom: 25px;
  background: var(--primary-pink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: white;
  z-index: 10;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 77, 148, 0.4);
}

.profile-card.expanded .expand-btn {
  transform: rotate(180deg);
  bottom: auto;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.book-btn-simple {
  width: 100%;
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 20px;
  cursor: pointer;
}

/* --- Clips (Reels) --- */
.reels-container {
  height: calc(100vh - 70px);
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
}

.reels-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}

.reel-item {
  height: calc(100vh - 70px); /* Height minus nav */
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  background: black;
  overflow: hidden;
}

@media (max-width: 480px) {
  .reel-item {
    height: calc(100vh - 65px);
  }
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.reel-details h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding-left: 20px;
}

.process-grid::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-pink), transparent);
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--bg-dark);
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 77, 148, 0.3);
}

.step-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-info h3 i {
  color: var(--primary-pink);
  font-size: 16px;
}

.step-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.reel-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  gap: 4px;
}

.action-btn i {
  font-size: 24px;
}

/* --- About Me Page --- */
.about-page {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero {
  text-align: center;
  margin-bottom: 60px;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.1;
}

.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  font-size: 24px;
  color: var(--primary-pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-pink);
}

.value-card i {
  font-size: 24px;
  color: var(--primary-pink);
  margin-bottom: 12px;
  display: block;
}

.value-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: white;
}

.value-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.confidentiality-box {
  background: rgba(170, 59, 255, 0.05);
  border: 1px solid rgba(170, 59, 255, 0.2);
  padding: 20px;
  border-radius: 20px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.confidentiality-box i {
  font-size: 32px;
  color: var(--primary-pink);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.note-box {
  background: rgba(255, 77, 148, 0.1);
  border-left: 4px solid var(--primary-pink);
  padding: 15px;
  border-radius: 0 12px 12px 0;
  font-size: 14px;
}

/* --- Booking Form --- */
#booking-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 2000;
  padding: 40px 20px;
  overflow-y: auto;
}

.booking-header {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 15px;
  color: white;
  font-family: inherit;
  outline: none;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.submit-btn {
  width: 100%;
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

/* --- Detailed Profile View (Tinder Style) --- */
.profile-detail-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 3000;
  overflow-y: auto;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-detail {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: white;
  z-index: 10;
  cursor: pointer;
}

.detail-gallery {
  width: 100%;
  height: 60vh;
  position: relative;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content {
  padding: 30px 20px;
  background: linear-gradient(to top, var(--bg-dark) 90%, transparent);
  margin-top: -50px;
  position: relative;
  border-radius: 30px 30px 0 0;
}

.detail-header {
  margin-bottom: 20px;
}

.detail-name {
  font-size: 32px;
  font-weight: 700;
  margin-right: 10px;
}

.detail-age {
  font-size: 24px;
  opacity: 0.8;
}

.detail-section {
  margin-bottom: 30px;
}

.detail-section h4 {
  color: var(--primary-pink);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.detail-bio {
  line-height: 1.6;
  color: var(--text-muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.grid-photo {
  aspect-ratio: 1;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
}

.grid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideDown {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}

.slide-down-anim {
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- Events (Let's Party) --- */
.events-page {
  padding: 20px;
  animation: fadeIn 0.4s ease;
}

.event-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-pink);
}

.event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-body {
  padding: 20px;
}

.event-date {
  color: var(--primary-pink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.event-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.event-location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
}

.event-price {
  font-weight: 700;
  color: white;
}

.book-event-btn {
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* --- Animations --- */
@keyframes swipeRight {
  to { transform: translate(150%, -20%) rotate(30deg); opacity: 0; }
}
@keyframes swipeLeft {
  to { transform: translate(-150%, -20%) rotate(-30deg); opacity: 0; }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.hidden { display: none !important; }
