        body {
            box-sizing: border-box;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #182976 0%, #340760 100%);
        }
        
        .glass-effect {
            background: #FAEB92;
            backdrop-filter: blur(10px);
            border: 1px solid #FF5FCF;
        }
        
        .neon-glow {
            box-shadow: 0 0 20px rgba(95, 255, 231, 0.5);
        }
        
        .typewriter {
            overflow: hidden;
            border-right: 0.15em solid #667eea;
            white-space: nowrap;
            margin: 0 auto;
            letter-spacing: 0.15em;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #667eea; }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        

        
        .dark-mode {
            background-color: #1a1a1a;
            color: #ffffff;
        }
        
        .dark-mode .glass-effect {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
        }
        
        .chat-button {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .deal-card {
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }
        
        .deal-card:hover {
            transform: rotateY(10deg) rotateX(10deg);
        }
        
        .form-floating {
            position: relative;
        }
        
        .form-floating input:focus + label,
        .form-floating input:not(:placeholder-shown) + label {
            transform: translateY(-25px) scale(0.8);
            color: #667eea;
        }
        
        .form-floating label {
            position: absolute;
            top: 15px;
            left: 15px;
            transition: all 0.3s ease;
            pointer-events: none;
        }
    .floating {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 10s ease;
}
.hero-slider img.active {
    opacity: 1;
    transform: scale(1);
}
/* Typewriter Effect */
.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid white;
    white-space: nowrap;
    animation: typing 3s steps(20, end), blink 0.75s step-end infinite;
}
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: white }
}

/* Button Glow */
.neon-glow {
    box-shadow: 0 0 10px #fff, 0 0 20px #b47cff, 0 0 30px #2575fc;
}
.hover-lift:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .text-5xl { font-size: 2.5rem; }
    .text-7xl { font-size: 3.5rem; }
}