:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --text-primary: #FAF7F2;
    --text-secondary: #9A958C;
    --cream: #FAF7F2;
    --cream-dim: #D4D0C8;
    --gold: #C9A959;
    --gold-light: #D4BC7B;
    --gold-dark: #B8943D;
    --border: #252525;
    --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Gold gradient accent at top */
.top-accent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    z-index: 100;
}

/* Background waves - thicker like the logo */
.wave-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.035;
}

.wave-bg svg {
    position: absolute;
    width: 250%;
    height: auto;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    max-width: 440px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 28px;
    animation: fadeIn 1s ease-out;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow), 0 0 0 2px var(--border);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Brand name */
.brand {
    text-align: center;
    margin-bottom: 8px;
    animation: fadeIn 1s ease-out 0.15s both;
}

.brand h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--cream);
}

.brand .tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 6px;
    letter-spacing: 0.03em;
}

/* Decorative divider */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    animation: fadeIn 1s ease-out 0.25s both;
}

.divider-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.divider-icon {
    color: var(--gold);
    font-size: 0.7rem;
}

/* Latest release */
.latest-release {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 32px;
    animation: fadeIn 1s ease-out 0.3s both;
    box-shadow: 0 4px 24px var(--shadow);
}

.latest-release .badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    background: rgba(201, 169, 89, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(201, 169, 89, 0.25);
}

.latest-release .track-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.latest-release .track-art {
    width: 72px;
    height: 72px;
    background: var(--bg-secondary);
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
}

.latest-release .track-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-release .track-details h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--cream);
}

.latest-release .track-details p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Section titles */
.section-title {
    width: 100%;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 14px;
    animation: fadeIn 1s ease-out 0.4s both;
}

/* Links container */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

/* Link button */
.link-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px var(--shadow);
    animation: fadeIn 1s ease-out both;
}

.link-btn:nth-child(1) { animation-delay: 0.45s; }
.link-btn:nth-child(2) { animation-delay: 0.5s; }
.link-btn:nth-child(3) { animation-delay: 0.55s; }
.link-btn:nth-child(4) { animation-delay: 0.6s; }

.link-btn:hover {
    border-color: var(--gold);
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.link-btn:active {
    transform: translateY(0);
}

.link-btn .icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.link-btn .icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.link-btn span {
    flex: 1;
}

.link-btn .arrow {
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.link-btn:hover .arrow {
    transform: translateX(4px);
}

.link-btn:hover .icon {
    color: var(--gold);
}

/* Support button */
.support-btn {
    background: rgba(201, 169, 89, 0.08);
    border: 1px solid rgba(201, 169, 89, 0.2);
}

.support-btn:hover {
    background: rgba(201, 169, 89, 0.15);
    border-color: var(--gold);
}

.support-btn .icon {
    color: var(--gold);
}

/* Social links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    animation: fadeIn 1s ease-out 0.75s both;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px var(--shadow);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
    animation: fadeIn 1s ease-out 0.85s both;
}

.footer .wave-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.footer .copyright {
    margin-top: 6px;
    font-size: 0.7rem;
    color: #555;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 60px 20px 40px;
    }
    
    .brand h1 {
        font-size: 1.75rem;
    }
    
    .logo {
        width: 88px;
        height: 88px;
    }
}