body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.hero {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    text-align: center;
    color: white;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #cc66ff;
    text-shadow: 0 0 10px #cc66ff;
}

.lead {
    font-size: 1.3em;
    margin-bottom: 1em;
}

.btn {
    display: inline-block;
    padding: 1em 2em;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2em; }
    .lead, .btn { font-size: 1em; }
}
