body {
    font-family: 'Cinzel', serif;
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: #fff;
}

header {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    animation: glowBorder 2s infinite alternate;
}

h1 {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700;
    animation: neonGlow 1.5s infinite alternate;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #ffd700;
    color: #1a1a1a;
    box-shadow: 0 0 15px #ffd700;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    margin: 50px auto;
    max-width: 1000px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    animation: slideUp 0.8s ease;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 20px;
}

@keyframes neonGlow {
    from { text-shadow: 0 0 10px #ffd700; }
    to { text-shadow: 0 0 20px #ffd700; }
}

@keyframes glowBorder {
    from { border-color: #ffd700; }
    to { border-color: #800000; }
}

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