 :root{
      --bg-primary: #0a0a0f;
      --bg-secondary: #141420;
      --bg-tertiary: #1e1e2e;
      --purple-primary: #6366f1;
      --purple-secondary: #8b5cf6;
      --purple-accent: #a855f7;
      --cyan-primary: #06b6d4;
      --cyan-secondary: #0891b2;
      --gold: #fbbf24;
      --text-primary: #f8fafc;
      --text-secondary: #cbd5e1;
      --text-muted: #94a3b8;
      --glass-bg: rgba(15, 15, 25, 0.4);
      --glass-border: rgba(255, 255, 255, 0.1);
      --shadow-primary: 0 25px 50px rgba(99, 102, 241, 0.15);
      --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
      --gradient-primary: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
      --gradient-accent: linear-gradient(135deg, var(--purple-accent), var(--cyan-primary));
      --gradient-gold: linear-gradient(135deg, #fbbf24, #f59e0b);
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html, body {
      height: 100%;
      overflow-x: hidden;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: 
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, #0f0f1a 50%, var(--bg-primary) 100%);
      color: var(--text-primary);
      line-height: 1.6;
      position: relative;
      min-height: 100vh;
    }

    /* Enhanced 3D Background Layers */
    .bg-scene {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      perspective: 2000px;
      overflow: hidden;
    }

    .bg-layer {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      will-change: transform;
      opacity: 0.6;
    }

    .bg-layer-1 {
      width: 1400px;
      height: 1400px;
      background: 
        radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.15), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.12), transparent 60%);
      filter: blur(60px);
      animation: rotate3d 30s linear infinite, pulse 8s ease-in-out infinite alternate;
    }

    .bg-layer-2 {
      width: 1000px;
      height: 1000px;
      background: 
        radial-gradient(circle at 40% 60%, rgba(6, 182, 212, 0.12), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1), transparent 50%);
      filter: blur(40px);
      animation: rotate3d -25s linear infinite, pulse 6s ease-in-out infinite alternate;
    }

    .bg-layer-3 {
      width: 800px;
      height: 800px;
      background: 
        conic-gradient(from 0deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.15), rgba(99, 102, 241, 0.2));
      filter: blur(30px);
      animation: rotate3d 20s linear infinite, pulse 4s ease-in-out infinite alternate;
    }

    .bg-layer-4 {
      width: 600px;
      height: 600px;
      background: 
        linear-gradient(45deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.08)),
        radial-gradient(circle at center, rgba(99, 102, 241, 0.15), transparent 70%);
      filter: blur(25px);
      animation: rotate3d -15s linear infinite, pulse 5s ease-in-out infinite alternate;
    }

    @keyframes rotate3d {
      0% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
      33% { transform: translate(-50%, -50%) rotateX(15deg) rotateY(120deg) rotateZ(120deg); }
      66% { transform: translate(-50%, -50%) rotateX(-10deg) rotateY(240deg) rotateZ(240deg); }
      100% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(360deg) rotateZ(360deg); }
    }

    @keyframes pulse {
      0% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
      100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
    }

    /* Enhanced Particle System */
    .particles-container {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 2;
    }

    .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      opacity: 0.8;
      animation: float linear infinite;
    }

    .particle.purple { background: var(--purple-primary); box-shadow: 0 0 6px var(--purple-primary); }
    .particle.cyan { background: var(--cyan-primary); box-shadow: 0 0 6px var(--cyan-primary); }
    .particle.gold { background: var(--gold); box-shadow: 0 0 6px var(--gold); }

    @keyframes float {
      0% { transform: translateY(100vh) translateX(0) rotate(0deg) scale(0); opacity: 0; }
      10% { opacity: 1; transform: translateY(90vh) translateX(20px) rotate(180deg) scale(1); }
      90% { opacity: 1; transform: translateY(10vh) translateX(-20px) rotate(340deg) scale(1); }
      100% { transform: translateY(-10vh) translateX(0) rotate(360deg) scale(0); opacity: 0; }
    }

    /* Enhanced Cursor Trail */
    .cursor-trail {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gradient-accent);
      animation: trailFade 0.8s ease-out forwards;
      box-shadow: 0 0 10px var(--purple-accent);
    }

    @keyframes trailFade {
      0% { opacity: 1; transform: scale(1); }
      100% { opacity: 0; transform: scale(0.1); }
    }

    /* Glass Morphism Components */
    .glass {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    }

    /* Enhanced Typography */
    .gradient-text {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .gold-text {
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Layout */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 10;
    }

    /* Enhanced Header */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(20px);
      background: rgba(10, 10, 15, 0.8);
      border-bottom: 1px solid var(--glass-border);
      transition: all 0.3s ease;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      position: relative;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s ease;
    }

    .brand:hover {
      transform: scale(1.05);
    }

    .logo {
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      color: white;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-glow);
      transition: all 0.3s ease;
    }

    .logo:hover {
      transform: rotateY(15deg) scale(1.1);
      box-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
    }

    .logo::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transform: rotate(45deg);
      transition: all 0.6s ease;
      opacity: 0;
    }

    .logo:hover::before {
      animation: shine 0.8s ease-out;
    }

    @keyframes shine {
      0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
      50% { opacity: 1; }
      100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
    }

    .nav-links {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .nav-link {
      color: var(--text-secondary);
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 10px;
      font-weight: 600;
      position: relative;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-primary);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 10px;
    }

    .nav-link:hover {
      color: white;
      transform: translateY(-2px);
    }

    .nav-link:hover::before {
      opacity: 0.1;
    }

    /* Enhanced Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 12px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      font-size: 16px;
      line-height: 1;
    }

    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
      transform: scale(0);
    }

    .btn:hover::before {
      opacity: 1;
      transform: scale(1);
    }

    .btn-primary {
      background: var(--gradient-primary);
      color: white;
      box-shadow: var(--shadow-primary);
    }

    .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 
        var(--shadow-primary),
        0 0 40px rgba(99, 102, 241, 0.4);
    }

    .btn-gold {
      background: var(--gradient-gold);
      color: var(--bg-primary);
      box-shadow: 0 25px 50px rgba(251, 191, 36, 0.15);
    }

    .btn-gold:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 
        0 25px 50px rgba(251, 191, 36, 0.15),
        0 0 40px rgba(251, 191, 36, 0.4);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--purple-primary);
      color: var(--purple-primary);
    }

    .btn-outline:hover {
      background: var(--purple-primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }

    /* Hero Section */
    .hero {
      padding: 80px 0 120px;
      position: relative;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 500px;
      gap: 60px;
      align-items: center;
    }

    .hero-text h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .hero-text .lead {
      font-size: 1.25rem;
      color: var(--text-secondary);
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-media {
      position: relative;
      height: 400px;
      border-radius: 20px;
      overflow: hidden;
      background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1)),
        url('https://i.pinimg.com/736x/fc/53/cb/fc53cb0bc91f8fafb032735371bf0db0.jpg');
      background-size: cover;
      background-position: center;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      perspective: 1000px;
    }

    .hero-media:hover {
      transform: rotateY(5deg) rotateX(5deg) scale(1.02);
      box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(99, 102, 241, 0.3);
    }

    .hero-media::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, 
        rgba(99, 102, 241, 0.3) 0%,
        transparent 40%,
        transparent 60%,
        rgba(139, 92, 246, 0.3) 100%
      );
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .hero-media:hover::before {
      opacity: 1;
    }

    /* Stats Section */
    .stats {
      padding: 80px 0;
      position: relative;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .stat-card {
      text-align: center;
      padding: 40px 24px;
      border-radius: 16px;
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      perspective: 1000px;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      border: 1px solid var(--glass-border);
      transition: all 0.3s ease;
    }

    .stat-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
      transition: left 0.6s ease;
    }

    .stat-card:hover {
      transform: translateY(-10px) rotateX(5deg);
    }

    .stat-card:hover::after {
      left: 100%;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .stat-label {
      color: var(--text-secondary);
      font-weight: 600;
      font-size: 1.1rem;
      position: relative;
      z-index: 1;
    }

    /* Enhanced Carousel */
    .carousel-section {
      padding: 50px 0;
      position: relative;
    }

    .carousel-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      perspective: 1000px;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform;
    }

    .carousel-slide {
      min-width: 100%;
      padding: 40px;
      display: flex;
      gap: 40px;
      align-items: center;
      position: relative;
    }

    .slide-media {
      width: 45%;
      height: 300px;
      border-radius: 16px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      perspective: 1000px;
    }

    .slide-media::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.2), 
        transparent 50%, 
        rgba(139, 92, 246, 0.2)
      );
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .slide-media::after {
      content: '▶';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      font-size: 24px;
      color: white;
      background: rgba(0, 0, 0, 0.7);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .slide-media.active {
      transform: translateZ(80px) scale(1.08) rotateY(8deg);
      box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(99, 102, 241, 0.4);
      z-index: 10;
    }

    .slide-media.active::before {
      opacity: 1;
    }

    .slide-media.active::after {
      transform: translate(-50%, -50%) scale(1);
    }

    .slide-content {
      width: 55%;
    }

    .slide-content h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .slide-content p {
      color: var(--text-secondary);
      margin-bottom: 24px;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .slide-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: white;
    }

    .badge-featured { background: var(--gradient-gold); color: var(--bg-primary); }
    .badge-strategy { background: var(--gradient-primary); }
    .badge-guide { background: var(--gradient-accent); }
    .badge-exclusive { background: linear-gradient(135deg, #ef4444, #dc2626); }

    /* Carousel Controls */
    .carousel-controls {
      position: absolute;
      inset: 0;
      pointer-events: none;
      
    }

    .carousel-btn {
      pointer-events: auto;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      color: white;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-btn:hover {
      background: var(--purple-primary);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }

    .carousel-prev { left: 20px; }
    .carousel-next { right: 20px; }

    .carousel-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 20;
    }

    .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-dot:hover {
      background: rgba(255, 255, 255, 0.6);
      transform: scale(1.2);
    }

    .carousel-dot.active {
      background: var(--gradient-primary);
      transform: scale(1.3);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }

    /* Gallery */
    .gallery-section {
      padding: 100px 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .gallery-item {
      height: 250px;
      border-radius: 16px;
      background-size: cover;
      background-position: center;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      perspective: 1000px;
    }

    .gallery-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.3) 0%,
        transparent 50%,
        rgba(139, 92, 246, 0.3) 100%
      );
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item::after {
      content: '🔍';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      font-size: 28px;
      transition: all 0.3s ease;
    }

    .gallery-item:hover {
      transform: translateY(-10px) rotateX(8deg) rotateY(5deg) scale(1.02);
      box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(99, 102, 241, 0.3);
    }

    .gallery-item:hover::before {
      opacity: 1;
    }

    .gallery-item:hover::after {
      transform: translate(-50%, -50%) scale(1);
    }

    /* Newsletter Section */
    .newsletter {
      padding: 80px 0;
      text-align: center;
    }

    .newsletter-form {
      display: flex;
      gap: 16px;
      max-width: 500px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .newsletter-input {
      flex: 1;
      min-width: 280px;
      padding: 16px 20px;
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      background: var(--glass-bg);
      color: var(--text-primary);
      font-size: 16px;
      backdrop-filter: blur(20px);
      transition: all 0.3s ease;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: var(--purple-primary);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }

    .newsletter-input::placeholder {
      color: var(--text-muted);
    }

    /* Footer */
    footer {
      padding: 60px 0 30px;
      border-top: 1px solid var(--glass-border);
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-section h4 {
      margin-bottom: 20px;
      font-weight: 700;
    }

    .footer-section p, .footer-section a {
      color: var(--text-secondary);
      text-decoration: none;
      line-height: 1.6;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: var(--purple-primary);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 30px;
      border-top: 1px solid var(--glass-border);
      color: var(--text-muted);
      flex-wrap: wrap;
      gap: 16px;
    }

    /* Modals */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-content {
      background: var(--glass-bg);
      backdrop-filter: blur(30px);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 40px;
      max-width: 600px;
      width: 100%;
      position: relative;
      animation: modalAppear 0.3s ease-out;
    }

    @keyframes modalAppear {
      from { opacity: 0; transform: scale(0.9) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      color: var(--text-secondary);
      font-size: 24px;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: var(--glass-bg);
      color: var(--text-primary);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1100;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 12px;
      box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
      animation: lightboxAppear 0.3s ease-out;
    }

    @keyframes lightboxAppear {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }

    /* Scroll Progress */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background: var(--gradient-primary);
      z-index: 1001;
      transition: width 0.1s ease;
      box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }

    /* Loading Screen */
    .loading-screen {
      position: fixed;
      inset: 0;
      background: var(--bg-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .loading-screen.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loading-spinner {
      width: 60px;
      height: 60px;
      border: 3px solid rgba(255, 255, 255, 0.1);
      border-top: 3px solid var(--purple-primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Floating Action Button */
    .fab {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--gradient-primary);
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(99, 102, 241, 0.4);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fab:hover {
      transform: scale(1.1) translateY(-4px);
      box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(99, 102, 241, 0.6);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .hero-content { grid-template-columns: 1fr 400px; gap: 40px; }
      .carousel-slide { padding: 32px; }
    }

    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
      .hero-media { height: 350px; }
      .slide-media { width: 40%; height: 250px; }
      .slide-content { width: 60%; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 16px; }
      .hero { padding: 60px 0 80px; }
      .hero-text h1 { font-size: 2.5rem; }
      .carousel-slide { 
        flex-direction: column; 
        text-align: center; 
        padding: 24px;
        padding-bottom: 55px; 
      }
      .slide-media { 
        width: 100%; 
        height: 200px; 
      }
      .slide-content { 
        width: 100%; 
      }
      .nav-links { 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: var(--glass-bg); 
        backdrop-filter: blur(20px); 
        border: 1px solid var(--glass-border); 
        border-radius: 12px; 
        padding: 16px; 
        margin-top: 8px; 
        display: none; 
      }
      .nav-links.open { display: flex; }
      .mobile-menu-toggle { 
        display: block; 
        background: none; 
        border: none; 
        color: white; 
        font-size: 24px; 
        cursor: pointer; 
      }
      .newsletter-form { flex-direction: column; }
      .newsletter-input { min-width: auto; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .stats-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
      .gallery-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .hero-text h1 { font-size: 2rem; }
      .hero-text .lead { font-size: 1.1rem; }
      .btn { padding: 12px 20px; font-size: 14px; }
      .fab { width: 56px; height: 56px; font-size: 20px; }
      .stat-number { font-size: 2.5rem; }
    }
    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .bg-layer { animation: none !important; }
      .particle { animation: none !important; }
    }

    /* Focus Styles */
    .btn:focus,
    .nav-link:focus,
    .carousel-btn:focus,
    .carousel-dot:focus {
      outline: 2px solid var(--purple-primary);
      outline-offset: 2px;
    }

    /* High Contrast Mode */
    @media (prefers-contrast: high) {
      :root {
        --bg-primary: #000000;
        --text-primary: #ffffff;
        --purple-primary: #7c3aed;
        --glass-border: rgba(255, 255, 255, 0.3);
      }
    }

    /* Print Styles */
    @media print {
      .bg-scene,
      .particles-container,
      .cursor-trail,
      .fab { display: none !important; }
      body { background: white !important; color: black !important; }
    }

    .mobile-menu-toggle {
      display: none;
    }
    /* ===== CSS ADDITIONS ===== */

/* Enhanced Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 101;
}

.mobile-menu-toggle:hover {
  background: var(--glass-bg);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .mobile-menu-toggle { 
    display: block;
  }
  
  .nav-links { 
    flex-direction: column; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: var(--glass-bg); 
    backdrop-filter: blur(20px); 
    border: 1px solid var(--glass-border); 
    border-radius: 12px; 
    padding: 16px; 
    margin-top: 8px; 
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .nav-links.open { 
    display: flex; 
    opacity: 1;
    transform: translateY(0);
    animation: slideDown 0.3s ease-out;
  }

  .nav-links .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-links .nav-link:hover {
    background: var(--glass-bg);
    transform: translateX(8px);
  }

  .nav-links .btn {
    margin-top: 8px;
    justify-content: center;
  }
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Additional Modal Animations */
@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
/* Enhanced Modal Styles */
.enhanced-modal {
  max-width: 600px;
  width: 90%;
  border-radius: 20px;
  overflow: hidden;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
  padding: 32px 32px 24px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.1) 0%, 
    rgba(139, 92, 246, 0.05) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.modal-header .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header .modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
  transform: scale(1.1);
}

.modal-body {
  padding: 24px 32px;
}

.modal-footer {
  padding: 24px 32px 32px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  border-top: 1px solid var(--glass-border);
}

/* Age Verification Modal */
.age-verification-modal .age-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.verification-info {
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.info-item h4 {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text-primary);
}

.info-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.verification-form {
  background: rgba(0, 0, 0, 0.2);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.verification-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  font-size: 16px;
  transition: all 0.3s ease;
}

.verification-input:focus {
  outline: none;
  border-color: var(--purple-primary);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.verification-checkbox {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--purple-primary);
}

.checkbox-group label {
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

/* App Development Modal */
.app-development-modal .dev-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.development-status {
  text-align: center;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 16px 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
}

.status-dot.pulsing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.status-text {
  font-weight: 700;
  color: #22c55e;
}

.progress-section {
  margin-bottom: 32px;
}

.progress-section h4 {
  margin-bottom: 16px;
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 0.8s ease;
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% { box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5); }
  50% { box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3); }
  100% { box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.5); }
}

.progress-text {
  font-weight: 600;
  color: var(--purple-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.feature-item.completed .feature-icon {
  color: #22c55e;
}

.feature-item.in-progress .feature-icon {
  color: #f59e0b;
  animation: spin 2s linear infinite;
}

.feature-item.pending .feature-icon {
  color: var(--text-muted);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.timeline {
  background: var(--glass-bg);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.timeline h4 {
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline-date {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-note {
  color: var(--text-secondary);
  margin: 0;
}

/* Coming Soon Modal */
.coming-soon-modal .coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: shake 2s infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.coming-soon-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-features {
  margin: 24px 0;
}

.feature-preview {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-preview:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.preview-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-preview h5 {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-preview p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.4;
}

.estimated-launch {
  text-align: center;
  background: var(--glass-bg);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.estimated-launch h5 {
  margin-bottom: 12px;
  font-weight: 700;
}

.launch-date {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-primary);
  margin: 0;
}

/* Signup Modal Benefits */
.signup-benefits {
  margin: 24px 0;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.benefit-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Success Notification */
.success-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-left: 4px solid #22c55e;
  border-radius: 12px;
  padding: 0;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(34, 197, 94, 0.2);
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 300px;
}

.success-notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}

.notification-icon {
  font-size: 1.2rem;
  color: #22c55e;
}

.notification-text {
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

/* Enhanced Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0px;
  
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 101;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.mobile-menu-toggle:hover {
  background: var(--glass-bg);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .mobile-menu-toggle { 
    display: flex;
  }
  
  .nav-links { 
    flex-direction: column; 
    position: fixed; 
    top: 80px; 
    left: 0; 
    right: 0; 
    background: var(--glass-bg); 
    backdrop-filter: blur(30px); 
    border: 1px solid var(--glass-border); 
    border-radius: 0 0 20px 20px; 
    padding: 24px; 
    margin: 0;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav-links.open { 
    display: flex; 
    opacity: 1;
    transform: translateY(0);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links .nav-link {
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-weight: 600;
  }

  .nav-links .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.3s ease;
    z-index: -1;
  }

  .nav-links .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px) scale(1.02);
    color: var(--purple-primary);
  }

  .nav-links .nav-link:hover::before {
    left: 0;
  }

  .nav-links .btn {
    margin-top: 16px;
    justify-content: center;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
  }
}

@keyframes slideDown {
  0% { 
    opacity: 0; 
    transform: translateY(-30px) scale(0.95); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

@keyframes modalSlideIn {
  0% { 
    opacity: 0; 
    transform: scale(0.9) translateY(20px); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
  .enhanced-modal {
    width: 95%;
    margin: 0 16px;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-footer {
    flex-direction: column-reverse;
  }
  
  .modal-footer .btn {
    width: 100%;
    justify-content: center;
  }
  
  .success-notification {
    left: 16px;
    right: 16px;
    min-width: auto;
    transform: translateY(-100%);
  }
  
  .success-notification.show {
    transform: translateY(0);
  }
}
/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  overflow-y: scroll;
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg-primary, #0d0d0d);
  color: var(--text-primary, #fff);
  line-height: 1.5;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: gold;
}
.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 40px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.hero-cta.small-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.hero-cta .btn {
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 8px;
}

/* Buttons */
.btn {
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: 0.2s ease;
}
.btn-gold {
  background: gold;
  color: #000;
}
.btn-primary {
  background: royalblue;
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn:hover {
  opacity: 0.85;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  height: 200px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
}
/* Removed search/magnify overlay completely */

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 60px;
    right: 0;
    width: 220px;
    padding: 20px;
    border-radius: 8px;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.flex{
  display: flex;
  align-items: center;
}
.flx{
  background-color: red;

}
@media (max-width: 1100px) {
 
.two { 
         
        display: none; 
      }}

@media (max-width: 768px) {
  .mobile-menu-toggle { 
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 60px;
    right: 0;
    width: 220px;
    padding: 20px;
    border-radius: 8px;
  }
  .two{
    display: flex;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
  
}
/* Company Logo in Modal */
.modal-logo {
  width: 120px;
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
}

/* Compact Status Elements */
.compact-status {
  text-align: center;
  margin-bottom: 16px;
}

.compact-progress {
  margin-bottom: 12px;
}

.compact-progress h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.mini-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}

.mini-progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width 0.8s ease;
}

.compact-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  font-size: 0.8rem;
}

.compact-timeline {
  background: rgba(99, 102, 241, 0.1);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 8px;
}

.compact-timeline h4 {
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.compact-date {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}
