 body {
            font-family: 'Inter', sans-serif;
            -webkit-font-smoothing: antialiased;
        }
        
        /* Peace Bar Enhancement */
        .peace-container {
            background: #0f172a;
            position: relative;
            overflow: hidden;
        }
        .peace-container::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 40%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
            animation: shimmer 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }
        @keyframes shimmer {
            0% { left: -150%; }
            100% { left: 150%; }
        }

        .text-gradient-gold {
            background: linear-gradient(to bottom, #ffffff 0%, #FFD700 45%, #f59e0b 55%, #78350f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
        }
        .text-gradient-blue {
            background: linear-gradient(to bottom, #3b82f6 0%, #1e40af 45%, #1e3a8a 55%, #0f172a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            filter: drop-shadow(0 1px 1px rgba(255,255,255,0.1));
            margin-right: -10px;
        }

        .peace-split-bg {
            background: linear-gradient(90deg, #1e40af 50%, #FFD700 50%);
            box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
        }

        /* --- BEAUTIFUL HEADER STYLES --- */
        .glass-header {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(30, 58, 138, 0.05);
        }
        
        /* Header state when scrolled */
        .header-active {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            box-shadow: 0 15px 50px -20px rgba(0, 0, 0, 0.12);
            border-bottom: 1px solid rgba(30, 58, 138, 0.1);
        }

        /* Scroll Progress Line */
        #scroll-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #1e3a8a, #3b82f6, #ffd700);
            width: 0%;
            transition: width 0.1s ease-out;
            z-index: 100;
        }

        /* Enhanced Navigation Links */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #1e3a8a;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Advanced Reveals */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }
        .float-element {
            animation: float 6s ease-in-out infinite;
        }
        
        .card-shadow {
            box-shadow: 0 4px 25px -5px rgba(0, 0, 0, 0.04);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .card-shadow:hover {
            box-shadow: 0 40px 80px -20px rgba(30, 58, 138, 0.15);
            transform: translateY(-12px) scale(1.02);
            border-color: rgba(30, 58, 138, 0.3);
        }

        .hero-gradient {
            background: radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.04) 0%, transparent 80%);
        }

        @keyframes pulse-soft {
            0%, 100% { transform: scale(1); opacity: 0.4; }
            50% { transform: scale(1.2); opacity: 0.9; }
        }
        .glow-dot {
            animation: pulse-soft 4s infinite ease-in-out;
        }

        /* Telegram Button Glow & Breathing */
        @keyframes tg-glow-pulse {
            0%, 100% { 
                box-shadow: 0 10px 25px -5px rgba(34, 158, 217, 0.4), 0 0 10px rgba(34, 158, 217, 0.2); 
            }
            50% { 
                box-shadow: 0 15px 35px -5px rgba(34, 158, 217, 0.6), 0 0 25px rgba(34, 158, 217, 0.4); 
            }
        }
        .tg-button {
            animation: tg-glow-pulse 4s infinite ease-in-out;
            padding: 1.1rem;
        }

        /* Modal Styles */
        .modal-overlay {
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .modal-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-card {
            transform: scale(0.9) translateY(20px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .modal-overlay.open .modal-card {
            transform: scale(1) translateY(0);
        }

        /* Mobile Menu Overlay Styles */
        .mobile-menu-overlay {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            opacity: 0;
            pointer-events: none;
            transform: translateY(-20px);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .mobile-menu-overlay.open {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }


/* Advanced CSS Effects */
:root {
  --oxford-blue: #1E3A8A;
  --slate-text: #64748b;
  --gold: #FFD700;
}

::selection {
  background: rgba(30, 58, 138, 0.2);
  color: var(--oxford-blue);
}

html {
  scroll-padding-top: 100px;
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Custom shadow for 3D feel */
.shadow-3xl {
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.18);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 20px;
  border: 4px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
  background: #cbd5e1;
}

/* Base Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Micro-interactions */
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* Focus styles for accessibility */
input:focus, textarea:focus {
  transform: scale(1.01);
  box-shadow: 0 10px 30px -10px rgba(30, 58, 138, 0.1);
}