:root {
  --bg-color: #050816;
  --glass-bg: rgba(10, 14, 39, 0.6);
  --glass-border: rgba(255, 215, 0, 0.1);
  --primary: #ffd700;
  --secondary: #e94560;
  --text-color: #ffffff;
  --text-muted: #8c9bb4;
  --font-family: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  background-image: radial-gradient(circle at 50% 50%, #1a1528 0%, #050816 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo span {
  color: var(--secondary);
}

/* Hero Section */
.hero {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.15) 0%, rgba(5, 8, 22, 0) 70%);
  z-index: -1;
  border-radius: 50%;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ffb703 100%);
  color: #050816;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Mockup */
.mockup-container {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: #161b33;
  border: 10px solid #2a2b3d;
  border-radius: 40px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0a0e1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glow-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(5, 8, 22, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s infinite alternate;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Features */
.features {
  padding: 100px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title span {
  color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
}

/* Play Store Button */
.play-store-btn {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.play-store-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-text .small {
  font-size: 10px;
  text-transform: uppercase;
  color: #888;
}

.btn-text .big {
  font-size: 16px;
  font-weight: 700;
}

/* Showcase Section */
.showcase {
  padding: 100px 0;
}

.showcase-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.showcase-row:nth-child(even) {
  flex-direction: row-reverse;
}

.showcase-image {
  flex: 1;
  max-width: 400px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  position: relative;
}

.testimonials-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  min-width: 300px;
  flex: 0 0 380px;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #fff;
}

.user-details h4 {
  font-size: 16px;
  font-weight: 600;
}

.user-details span {
  color: var(--primary);
  font-size: 12px;
}


/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--primary);
  color: #050816;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}


.showcase-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.showcase-text {
  flex: 1;
  text-align: left;
}

.showcase-text .slogan {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.showcase-text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .showcase-row {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }
  .showcase-text {
    text-align: center;
  }
}

/* Footer */
footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 14px;
}

/* Custom Dropdown */
.custom-dropdown {
  position: relative;
  width: 150px;
  font-family: 'Outfit', sans-serif;
}

.dropdown-selected {
  background: var(--glass-bg);
  color: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dropdown-selected:hover {
  border-color: var(--primary);
}

.dropdown-selected img {
  width: 20px;
  border-radius: 2px;
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0a0e27;
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  margin-top: 5px;
  display: none;
  z-index: 1000;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  overflow: hidden;
}

.dropdown-options.active {
  display: block;
}

.dropdown-options div {
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.dropdown-options div:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #fff;
}

.dropdown-options img {
  width: 20px;
  border-radius: 2px;
}

