
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #1e002e;
    color: #f5f5f5;
    text-align: center;
}

.hero {
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #1e002e;
}

.hero-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.links {
    background-color: #2a003b;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links a {
    background-color: #ff8b58;
    color: #1e002e;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s;
}

.links a:hover {
    background-color: #ffaa80;
}

.links a.glow {
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #ff8b58, 0 0 20px #ff8b58, 0 0 30px #ff8b58;
}

@keyframes pulse {
    0% { text-shadow: 0 0 5px #ff8b58; }
    50% { text-shadow: 0 0 15px #ffa571; }
    100% { text-shadow: 0 0 5px #ff8b58; }
}
