 /* Reuse the same styles from servers.html */
 .card-gradient {
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.4) 0%,
        rgba(17, 24, 39, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background flares and glows */
.background-flare {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -2;
    pointer-events: none;
    animation: flare-float 15s ease-in-out infinite alternate;
}

.flare-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.7), rgba(99, 102, 241, 0.3), transparent 70%);
    top: -20vh;
    left: -10vw;
    animation-delay: -2s;
}

.flare-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle at center, rgba(192, 132, 252, 0.7), rgba(192, 132, 252, 0.3), transparent 70%);
    bottom: -25vh;
    right: -15vw;
    animation-delay: -5s;
}

.flare-3 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle at center, rgba(244, 114, 182, 0.7), rgba(244, 114, 182, 0.3), transparent 70%);
    bottom: 20vh;
    left: 10vw;
    animation-delay: -8s;
}

.flare-4 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.7), rgba(56, 189, 248, 0.3), transparent 70%);
    top: 15vh;
    right: 5vw;
    animation-delay: -12s;
}

@keyframes flare-float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.12;
    }
    50% {
        transform: translate(2%, 2%) scale(1.05);
        opacity: 0.15;
    }
    100% {
        transform: translate(-2%, -1%) scale(0.95);
        opacity: 0.18;
    }
}

/* Glow effects for elements */
.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(99, 102, 241, 0.15),
        rgba(192, 132, 252, 0.1),
        transparent 70%
    );
    pointer-events: none;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.7;
    animation: glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

/* Card glow animation */
.card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(99, 102, 241, 0.3), 
        transparent,
        transparent,
        rgba(192, 132, 252, 0.3),
        transparent
    );
    z-index: -1;
    border-radius: inherit;
    animation: card-border-glow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

@keyframes card-border-glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Enhanced grid background */
.grid-bg {
    position: absolute;
    inset: -100vh -50vw;
    width: 200vw;
    height: 300vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 2px, transparent 2px);
    background-size: 25px 25px, 25px 25px, 100px 100px, 100px 100px;
    background-position: center;
    animation: grid-animation 25s linear infinite;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 90%,
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 90%,
        rgba(0, 0, 0, 0) 100%
    );
}

.grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.01),
        transparent 70%
    );
    opacity: 0.3;
    pointer-events: none;
}

@keyframes grid-animation {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(15px) scale(1.01);
        opacity: 0.5;
    }
    100% { 
        transform: translateY(30px) scale(1);
        opacity: 0.7;
    }
}

body {
    background: linear-gradient(135deg, 
        #0a0f1f 0%, 
        #111827 50%,
        #1a1f35 100%
    );
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Enhanced background with dynamic gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 35%, rgba(99, 102, 241, 0.15), transparent 25%),
        radial-gradient(circle at 75% 44%, rgba(192, 132, 252, 0.15), transparent 30%),
        radial-gradient(circle at 5% 85%, rgba(244, 114, 182, 0.1), transparent 30%),
        radial-gradient(circle at 80% 15%, rgba(56, 189, 248, 0.1), transparent 25%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(10, 15, 31, 0.3) 50%,
        rgba(10, 15, 31, 0.8) 100%
    );
    pointer-events: none;
    z-index: -1;
}