* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #e5e7eb;
}

/* Background */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url("/static/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: -1;
}

@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

/* NAVBAR */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

nav h1 {
    color: #8B5CF6;
}

nav .links a {
    margin-left: 20px;
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

nav .links a:hover {
    color: #8B5CF6;
}

/* Layout */
.container {
    max-width: 900px;
    margin: auto;
    padding: 120px 20px 60px;
}

/* HERO */
.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h2 {
    font-size: 40px;
    color: #8B5CF6;
    text-shadow: 0 0 20px #8B5CF6;
}

.hero p {
    margin-top: 10px;
    color: #aaa;
}

/* Buttons */
.buttons {
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    margin: 5px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.primary {
    background: #8B5CF6;
    color: white;
}

.primary:hover {
    box-shadow: 0 0 15px #8B5CF6;
}

.secondary {
    border: 1px solid #8B5CF6;
    color: #8B5CF6;
}

.secondary:hover {
    background: #8B5CF6;
    color: white;
}

.small {
    margin-top: 15px;
}

/* Glass Cards */
.glass {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139,92,246,0.2);
    transition: 0.3s;
}

.glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(139,92,246,0.4);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
}

.status {
    color: #6366F1;
    font-style: italic;
}
