/* style.css */
:root {
  --bg: #0f0f11;
  --surface: #1a1a1d;
  --text: #f0f0f0;
  --text-secondary: #b0b0b0;
  --primary: #00bfff;
  --card-radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background-color: rgba(15, 15, 17, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}

.nav a.active, .logo:hover {
  color: var(--primary);
}

.header-fixed {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search {
  background: #222;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  color: white;
  width: 200px;
}

.user-icon {
  font-size: 1.2rem;
  text-decoration: none;
  color: white;
}

/* Hero */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(15, 15, 17, 0.7), rgba(15, 15, 17, 0.9)), url('https://via.placeholder.com/1920x1080/000/222?text=Hero+Background') center/cover no-repeat;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-cta .btn {
  margin: 0 0.5rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background-color: #00aaff;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0, 191, 255, 0.1);
}

/* USP */
.usp {
  padding: 4rem 0;
}

.usp h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--card-radius);
  width: 280px;
  text-align: center;
}

/* Pricing */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--card-radius);
  width: 250px;
  text-align: center;
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: var(--primary);
}

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.pricing-card li {
  padding: 0.4rem 0;
  color: var(--text-secondary);
}

/* Account Tabs */
.tabs {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.status.active {
  color: #4caf50;
}

/* Checkout */
.checkout-layout {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.checkout-form, .order-summary {
  flex: 1;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--card-radius);
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  color: white;
}

.exp-cvv {
  display: flex;
  gap: 0.5rem;
}

.exp-cvv input {
  flex: 1;
}

/* Browse Page */
.featured-banner {
  height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('image/Modal Nekad.png') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  margin-bottom: 2rem;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.content-row {
  margin-bottom: 3rem;
}

.content-row h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.scroll-row {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 0.5rem 0;
  scrollbar-width: thin;
}

.content-card {
  flex: 0 0 auto;
  width: 200px;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.content-card img {
  width: 100%;
  height: auto;
  display: block;
}

.content-card:hover {
  transform: scale(1.05);
  z-index: 10;
}

/* Auth Page */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg);
}

.auth-container {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--card-radius);
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.auth-title {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.auth-form input {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  color: white;
}

.password-field {
  position: relative;
}

.toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
}

.auth-switch {
  margin-top: 1.5rem;
  color: var(--text-secondary);
}

.auth-switch a {
  color: var(--primary);
  text-decoration: none;
}

/* Footer */
.footer {
  background: #0a0a0c;
  padding: 2rem 0;
  text-align: center;
  color: var(--text-secondary);
  margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .checkout-layout {
    flex-direction: column;
  }
  .header .nav {
    display: none;
  }
  .search {
    width: 120px;
  }
}