        * {
            font-family: 'Titillium Web', sans-serif;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
        }
        
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: #d4af37;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #2d5a8a 0%, #1e3a5f 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3);
        }
        
        .new-launch-badge {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.8;
            }
        }