* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: linear-gradient(135deg, #1e1e2e 0%, #1a1b26 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0;
    color: #e0e0e0;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    background: #24283b;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #414868;
}

h1 {
    color: #a9b1d6;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Netflix Red */
.btn.netflix {
    background: #E50914;
}

.btn.netflix:hover {
    background: #f40612;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 9, 20, 0.3);
}

/* Spotify Green */
.btn.spotify {
    background: #1DB954;
}

.btn.spotify:hover {
    background: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.3);
}

/* Google Blue */
.btn.google {
    background: #4285F4;
}

.btn.google:hover {
    background: #5a95f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

/* Amazon Orange */
.btn.amazon {
    background: #FF9900;
}

.btn.amazon:hover {
    background: #ffac31;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
}

.hint {
    color: #7aa2f7;
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
