/* LuminOS Modern Glassmorphism Styling System */
:root {
  --bg-dark: #090B0E;
  --bg-card: rgba(18, 22, 32, 0.75);
  --border-gold: rgba(255, 184, 0, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --gold-primary: #FFB800;
  --gold-hover: #FFA800;
  --gold-glow: rgba(255, 184, 0, 0.25);
  --text-main: #F3F4F6;
  --text-sub: #9CA3AF;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Glow Orbs */
.bg-glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}
.orb-1 {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, #FFB800, #FF6B00);
}
.orb-2 {
  top: 600px;
  right: -100px;
  background: radial-gradient(circle, #3B82F6, #1D4ED8);
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 11, 14, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-gold);
}

.brand-name {
  font-weight: 800;
  font-size: 1.35rem;
  color: #FFF;
  letter-spacing: -0.5px;
}
.brand-name span {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #FFF;
}

.nav-btn-primary {
  background: var(--gold-primary);
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 18px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--gold-glow);
}

/* Hero Section */
.hero {
  padding: 80px 0 100px 0;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, #FFB800 0%, #FFA800 50%, #FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-sub);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-gold {
  background: linear-gradient(135deg, #FFB800, #FF9900);
  color: #000;
  box-shadow: 0 6px 24px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px var(--gold-glow);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #FFF;
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid var(--border-subtle);
  color: var(--text-sub);
}
.btn-outline:hover {
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-sf {
  background: linear-gradient(135deg, #FF5500, #E64D00);
  color: #FFF;
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.3);
}
.btn-sf:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 85, 0, 0.4);
}

.btn-magnet {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFF;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}
.btn-magnet:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.4);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(18, 22, 32, 0.6);
  border: 1px solid var(--border-subtle);
  padding: 16px 24px;
  border-radius: 12px;
  width: fit-content;
}

.stat-val {
  display: block;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold-primary);
}
.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-sub);
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
}

/* Wallpaper Visual */
.wallpaper-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.hero-wallpaper {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.glass-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 18, 26, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
}

.window-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.fetch-preview {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.5;
  color: #D1D5DB;
}
.c-gold { color: var(--gold-primary); font-weight: 600; }
.c-blue { color: #60A5FA; }

/* Section Styling */
.section {
  padding: 90px 0;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-dark {
  background: rgba(15, 18, 26, 0.5);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-sub);
  font-size: 1.05rem;
}

/* Grids & Cards */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(255, 184, 0, 0.05) 0%, rgba(18, 22, 32, 0.8) 100%);
}

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 184, 0, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ram-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold-primary);
  background: rgba(255, 184, 0, 0.1);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.card p {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
}
.check-list li {
  font-size: 0.88rem;
  color: #D1D5DB;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.check-list li::before {
  content: "✓";
  color: var(--gold-primary);
  font-weight: 800;
}

/* Gaming Banner */
.gaming-banner {
  background: linear-gradient(135deg, rgba(20, 26, 38, 0.9), rgba(12, 15, 22, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 48px;
}

.gb-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.gb-content p {
  color: var(--text-sub);
  max-width: 680px;
  margin-bottom: 28px;
}

.code-block {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
.code-comment { color: #6B7280; }
.code-prompt { color: var(--gold-primary); font-weight: 700; }
.code-cmd { color: #60A5FA; }

/* Tool Cards */
.tool-card h4 {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

/* Download Card */
.download-card {
  background: linear-gradient(180deg, rgba(255, 184, 0, 0.08) 0%, rgba(18, 22, 32, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.dl-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-primary);
  background: rgba(255, 184, 0, 0.15);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border-gold);
}

.download-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.download-card p {
  color: var(--text-sub);
  margin-bottom: 32px;
}

.hash-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #D1D5DB;
  max-width: 640px;
  margin: 0 auto 36px auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dl-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-sub);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .nav-links {
    display: none;
  }
}
