body {
    background-color: #000000;
    color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 1024px) {
    .glass-card:hover {
        border-color: rgba(255, 0, 0, 0.5);
        box-shadow: 0 20px 40px -15px rgba(255, 0, 0, 0.3);
        transform: translateY(-10px);
    }
}

.modern-title {
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .modern-title {
        letter-spacing: -2px;
    }
}

.btn-modern {
    background-color: #ff0000;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-modern:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
}

.wpp-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 10px;
}
