body {
    background: url('img/bg.png') no-repeat center center fixed;
    background-size: cover;
    background-color: #0e0e0e;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

.hero {
    text-align: center;
    padding: 8rem 2rem;
}

.hero img {
    width: 240px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.75rem;
    color: #f02d61;
}

.btn-funk {
    background: #f02d61;
    color: #fff;
    border: none;
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
    transition: 0.3s;
}

.btn-funk:hover {
    background: #ff4d80;
}

.section {
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #f02d61;
    font-size: 2rem;
}

.lore-step {
    max-width: 700px;
    margin: 0 auto 2rem;
    background: rgba(255,255,255,0.08);
    padding: 1.25rem;
    border-radius: 10px;
    font-size: 1rem;
}

.bg-dark-section {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.bg-degen-block,
.bg-degen-block-alt {
    padding: 5rem 2rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #222;
}

.bg-degen-block-alt {
  }

.text-pink {
    color: #f02d61;
}

.vinyl-spin {
    animation: spin 6s linear infinite;
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.85rem;
    color: #aaa;
}