:root {
    --bg-dark: #09090b;
    --card-bg: rgba(24, 24, 27, 0.7);
    --spotify-green: #1db954;
    --text-main: #ffffff;
    --text-dim: #a1a1aa;
    --glass-border: rgba(255, 255, 255, 0.05);
    --accent-gradient: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, .logo {
    font-family: 'Outfit', sans-serif;
}

.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, #1db95422 0%, transparent 50%);
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.spotify-accent {
    color: var(--spotify-green);
}

.white {
    color: #fff;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.3);
}

main {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 5%;
}

.hero {
    text-align: center;
    margin-bottom: 5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 185, 84, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.2;
    color: var(--spotify-green);
}

.step-header h2 {
    font-size: 2rem;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.step-content p strong {
    color: var(--spotify-green);
}

.step-content img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.step-card:hover img {
    transform: scale(1.02);
}

footer {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-dim);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
}
