/* style.css */
body {
    margin: 0;
    background-color: #0f0f0f;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo {
    width: 300px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.logo:hover {
    transform: scale(1.08) translateY(-5px);
}

.card {
    text-align: center;
    padding: 3rem;
    border: 1px solid #333;
    border-radius: 12px;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 320px;
    /* Fade-in Animation */
    animation: fadeIn 0.8s ease-out;
}

h1 {
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
}

p {
    color: #888;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    width: 100%;
    max-width: 200px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #252525;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
}

.btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.email-link {
    color: #888; /* Matches your previous paragraph color */
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.email-link:hover {
    color: #fff; /* Highlights to white when hovered */
    text-decoration: underline;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}