@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #030303;
  --color-bg-alt: #0a0a0f;
  --color-primary: #9333ea;
  --color-primary-light: #c084fc;
  --color-primary-dark: #6d28d9;
  --color-accent: #3b82f6;
  --color-accent-alt: #10b981;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-text: #f8fafc;
  --color-text-muted: #94a3b8;
  
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.05), transparent 40%),
                    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.05), transparent 40%);
  background-attachment: fixed;
}

::selection { background: var(--color-primary); color: #fff; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-display); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TIPOGRAFI ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-muted { color: var(--color-text-muted); }

/* ===== BUTONLAR ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3), inset 0 2px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5), inset 0 2px 0 rgba(255,255,255,0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: calc(var(--border-radius-sm) - 1px);
  z-index: -1;
  transition: opacity var(--transition-base);
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.btn-outline:hover {
  background: rgba(139, 92, 246, 0.15);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid transparent;
}
.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-lg { padding: 16px 36px; font-size: 1.15rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ===== KARTLAR (GLASSMORPHISM) ===== */
.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15);
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-primary { background: rgba(139, 92, 246, 0.15); color: var(--color-primary-light); border: 1px solid rgba(139, 92, 246, 0.3); }
.badge-success { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-danger  { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }

/* ===== FORMLAR ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
  background: rgba(20, 15, 30, 0.8);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }

/* ===== ORTAK YAPILAR ===== */
.section { padding: 100px 0; position: relative; z-index: 2; }
.section-header { margin-bottom: 50px; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-light), transparent);
}
.section-title { font-size: 2.8rem; margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: var(--color-text-muted); max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-label { padding-left: 0; }
.text-center .section-label::before { display: none; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* Grid Yardimcilari */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  border: none;
  margin: 0;
}

/* Ortak Dekoratif Orb */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.glow-orb-purple { background: var(--color-primary); }
.glow-orb-accent { background: var(--color-accent); }

/* Scroll Bar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(139, 92, 246, 0.5); }

/* Toast Bildirimleri */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; }
.toast {
  background: rgba(15, 10, 20, 0.9);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--color-primary);
  border-radius: 4px;
  padding: 16px 24px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast-success { border-color: var(--color-success); }
.toast-error { border-color: var(--color-danger); }
.toast-hide { animation: fadeOutRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOutRight { to { transform: translateX(100%); opacity: 0; } }

/* Yükleme EkranA± */
#loading-screen {
  position: fixed; inset: 0; background: var(--color-bg); z-index: 99999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-logo { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; letter-spacing: 0.1em; color: #fff; margin-bottom: 24px; animation: pulse-glow 2s infinite; }
.loader-bar-wrap { width: 200px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; position: relative; }
.loader-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 50%; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); border-radius: 4px; animation: loading-bar 1.5s infinite ease-in-out; }
@keyframes loading-bar { 0% { left: -50%; } 100% { left: 100%; } }

/* Responsive */
@media (max-width: 992px) {
  .section { padding: 80px 0; }
  .section-title { font-size: 2.4rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
}

/* ===== JS & ANIMATION YARDIMCILARI ===== */
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Smooth Scroll Yardimcisi */
html { scroll-behavior: smooth; }


/* ===== PAGE HEADERS (COMMON) ===== */
.page-header {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 40px rgba(168,85,247,0.4);
}
.page-header-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .page-header { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 40px; }
  .page-header-title { font-size: 2.2rem; }
}



/* ===== CUSTOM CURSOR ===== */
* {
  cursor: none !important; /* Hide default cursor on desktop */
}
@media (max-width: 768px) {
  * { cursor: auto !important; }
}

.custom-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 10px var(--color-primary-light);
}
.custom-cursor-outline {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

.custom-cursor-dot.cursor-hover {
  width: 12px; height: 12px;
  background-color: #10b981;
  box-shadow: 0 0 15px #10b981;
}
.custom-cursor-outline.cursor-hover {
  width: 60px; height: 60px;
  background-color: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
}

/* Enhancing general card styles for 3D */
.card, .event-card, .streamer-card, .feature-card {
  transform-style: preserve-3d;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.card > *, .event-card > *, .streamer-card > *, .feature-card > * {
  transform: translateZ(30px); /* Makes content pop out in 3D */
}

/* AAA Section Adjustments */
.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}
::selection {
  background: var(--color-primary);
  color: #fff;
}


/* ===== MOBILE RESPONSIVENESS OVERRIDES ===== */
@media (max-width: 768px) {
  /* Typography */
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
  }
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  .hero-desc, .section-subtitle {
    font-size: 1rem !important;
    padding: 0 15px;
  }

  /* Spacing & Sections */
  .hero-section {
    padding-top: 120px !important;
    min-height: 80vh !important;
  }
  .section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  
  /* Cards */
  .card, .event-card, .streamer-card {
    padding: 25px !important;
  }
  
  /* Server Stats */
  .server-stats {
    flex-direction: column;
    gap: 20px !important;
    padding-top: 30px !important;
  }
  .server-stats > div {
    border-left: none !important;
    border-top: 2px solid var(--color-primary);
    padding: 15px 0 0 0 !important;
    text-align: center !important;
  }
  .server-stats > div:nth-child(2) { border-top-color: #3b82f6; }
  .server-stats > div:nth-child(3) { border-top-color: #10b981; }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 12px 20px;
  }
  #lottery-amount {
    font-size: 2.5rem !important;
  }
}

/* --- NEW MODERN OVERRIDES --- */

    
    
    
    
    
    
    
    
    /* Background Glow Effects */
    .bg-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      overflow: hidden;
      background: var(--bg-color);
    }
    
    .glow-blob {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100vw;
      height: 90vh;
      background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.45) 0%, rgba(59, 130, 246, 0.3) 40%, transparent 70%);
      filter: blur(120px);
      border-radius: 50%;
      animation: pulseBlob 12s infinite alternate ease-in-out;
    }
    
    @keyframes pulseBlob {
      0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
      100% { transform: translate(-50%, -45%) scale(1.1); opacity: 1; }
    }

    /* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 48px;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
    }
    .nav-left {
      display: flex;
      align-items: center;
      gap: 48px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.5rem;
      letter-spacing: -0.5px;
      color: white;
    }
    .logo-icon {
      width: 32px;
      height: 32px;
      background: white;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s;
  text-decoration: none;
}
    .nav-links a:hover {
      opacity: 1;
    }
    .nav-right {
      display: flex;
      align-items: center;
    }
    .btn-signin {
      background: white;
      color: black;
      padding: 10px 24px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 0.9rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-signin:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(255,255,255,0.3);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }
    .hero-title {
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 800;
      line-height: 1.1;
      max-width: 900px;
      margin-bottom: 24px;
      letter-spacing: -1.5px;
      text-wrap: balance;
    }
    .hero-subtitle {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.75);
      max-width: 650px;
      line-height: 1.6;
      margin-bottom: 40px;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
    }
    
    
    
    
    

    /* Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0.6;
      transition: opacity 0.3s;
    }
    .scroll-indicator:hover { opacity: 1; }
    .mouse {
      width: 22px;
      height: 34px;
      border: 2px solid white;
      border-radius: 12px;
      position: relative;
    }
    .wheel {
      width: 4px;
      height: 8px;
      background: white;
      border-radius: 2px;
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      animation: scroll 2s infinite;
    }
    .scroll-text {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    @keyframes scroll {
      0% { transform: translate(-50%, 0); opacity: 1; }
      100% { transform: translate(-50%, 10px); opacity: 0; }
    }

    /* Container */
    

    /* Sections */
    
    
    
    
    

    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .feature-card {
      background: rgba(20, 20, 25, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 40px 30px;
      text-align: center;
      backdrop-filter: blur(10px);
      transition: all 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      border-color: rgba(147, 51, 234, 0.3);
      box-shadow: 0 10px 40px rgba(147, 51, 234, 0.1);
      background: rgba(30, 25, 40, 0.6);
    }
    .feature-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      font-size: 1.8rem;
      color: var(--primary-light);
    }
    .feature-card:hover .feature-icon {
      background: rgba(147, 51, 234, 0.1);
      border-color: rgba(147, 51, 234, 0.4);
    }
    .feature-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .feature-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    /* CTA Section */
    .cta-card {
      background: rgba(20, 20, 25, 0.6);
      border: 1px solid rgba(147, 51, 234, 0.3);
      border-radius: 32px;
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
    }
    .cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    /* News Grid */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }
    .news-card {
      background: rgba(20, 20, 25, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s;
    }
    .news-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, 0.15);
    }
    .news-img {
      height: 200px;
      background: rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.2);
    }
    .news-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .news-content {
      padding: 24px;
    }
    .news-date {
      font-size: 0.8rem;
      color: var(--primary-light);
      font-weight: 600;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .news-title {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .news-excerpt {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* Footer */
    .footer {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 60px 0 30px;
      margin-top: 50px;
      background: rgba(0,0,0,0.5);
    }
    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand p {
      color: var(--text-muted);
      margin-top: 20px;
      max-width: 300px;
    }
    .footer-links h4 {
      font-size: 1.1rem;
      margin-bottom: 24px;
      font-weight: 700;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 12px;
    }
    .footer-links a {
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
}
    .footer-links a:hover {
      color: white;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .navbar { padding: 20px; }
      .nav-links { display: none; }
      .hero-title { font-size: 2.5rem; }
      .hero-actions { flex-direction: column; width: 100%; }
      .hero-actions 
      .footer-content { grid-template-columns: 1fr; gap: 40px; }
    }
  
/* Mobile Menu */
.nav-mobile-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: 20px;
}
.nav-mobile-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(15px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.mobile-menu-inner a {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.2s;
}
.mobile-menu-inner a:hover, .mobile-menu-inner a.active {
  opacity: 1;
  color: var(--primary-light);
}

@media (max-width: 900px) {
  .nav-mobile-btn { display: block; z-index: 9999; }
  .nav-links { display: none !important; }
}

/* FIX HERO PADDINGS FOR ALL PAGES */
.page-hero, .page-header {
  padding-top: calc(var(--nav-height, 100px) + 60px) !important;
  position: relative;
  z-index: 1;
}

/* FIX FIRST SECTION PADDING FOR ALL PAGES */
body > section.section:first-of-type {
  padding-top: calc(var(--nav-height, 100px) + 40px) !important;
}

/* CUSTOM LOGO STYLING */
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(168,85,247,0.6));
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(168,85,247,0.3);
}

/* SCRIPT FONT LOGO OVERRIDES */
.logo-text {
  font-family: 'Great Vibes', cursive !important;
  font-size: 3.2rem !important;
  font-weight: 400 !important;
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 30%, #c084fc 60%, #9333ea 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 25px rgba(168,85,247,0.6) !important;
  line-height: 1 !important;
  padding-bottom: 8px !important;
  padding-right: 10px !important;
  letter-spacing: 2px !important;
}

/* FIX SCRIPT FONT CLIPPING */
.logo-text {
  display: inline-block !important;
  padding: 20px 30px !important;
  margin: -20px -30px !important;
  line-height: 1.2 !important;
  overflow: visible !important;
}
