body {
    font-family: 'Poppins', sans-serif;
    background: url('../images/mixing-desk.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #e0e0e0;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ff88;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.entry-form input {
    width: 80%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}
.entry-form button {
    width: 85%;
    padding: 12px;
    margin-top: 15px;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.entry-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ff88;
}