body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #f0f0f0;
    overflow-x: hidden;
}

.red-gradient {
    background: linear-gradient(90deg, #ff0000 0%, #ff6666 100%);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 1.2s ease-out forwards;
}

.float {
    animation: float 4s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px #ff0000;
    text-stroke: 2px #ff0000;
}

.clipped-border {
    position: relative;
    border: 3px solid transparent;
    border-radius: 15px;
    background: linear-gradient(black, black) padding-box,
                linear-gradient(135deg, #ff0000, #ff6666) border-box;
}

.discord-btn {
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.discord-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

.count-badge {
    position: relative;
    display: inline-block;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.stats-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
    border: 3px solid rgba(255, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: pulse 4s infinite;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin: 30px 0;
}

.floating-bg-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 30px;
    transform: rotate(45deg);
    filter: blur(10px);
    opacity: 0.1;
    z-index: -1;
}