:root {
    --primary: #00d2ff;
    --secondary: #3a7bd5;
    --bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    perspective: 1000px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* 3D Depth for text */
.card-content {
    transform: translateZ(60px);
}

.badge {
    display: inline-block;
    background: rgba(0, 210, 255, 0.2);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid var(--primary);
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #aaa;
    margin-top: 10px;
    font-weight: 300;
}

.links {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.primary {
    background: var(--primary);
    color: #000;
}

.secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

/* Glossy Shine Effect */
.card-shine {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 80%);
    pointer-events: none;
}