 body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: #000;
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #fff;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

header p {
    color: #ccc;
    font-size: 0.9rem;
}

main {
    max-width: 900px;
    margin: auto;
    padding: 2rem;
}

.card {
    background: #111;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #ccc;
}

footer {
    background: #000;
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    border-top: 1px solid #fff;
}

/* Fade-in Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay { animation-delay: 0.3s; }
.delay2 { animation-delay: 0.6s; }
.delay3 { animation-delay: 0.9s; }
.delay4 { animation-delay: 1.2s; }
.delay5 { animation-delay: 1.5s; }

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