/* CSS Variables */
:root {
    --bg-dark: #050508;
    --bg-secondary: #0c0c12;
    --accent-primary: #ff2d55;
    --accent-secondary: #bf5af2;
    --accent-tertiary: #ff9f0a;
    --text-primary: #ffffff;
    --text-muted: #8e8e93;
    --triangle-color: rgba(255, 45, 85, 0.06);
    --triangle-border: rgba(191, 90, 242, 0.2);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* Animated Triangle Background */
.triangle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.triangle-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 0 180px 312px 180px;
    border-color: transparent transparent var(--triangle-color) transparent;
    animation: pulse 10s ease-in-out infinite, rotate 25s linear infinite;
    filter: drop-shadow(0 0 60px rgba(255, 45, 85, 0.15));
}

.triangle-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 0 120px 208px 120px;
    border-color: transparent transparent transparent transparent;
    animation: pulse 10s ease-in-out infinite 2.5s, rotate 30s linear infinite reverse;
    opacity: 0.7;
}

.triangle-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 120px 208px 120px;
    border-color: transparent transparent var(--triangle-border) transparent;
}

.triangle-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 0 240px 416px 240px;
    border-color: transparent transparent rgba(191, 90, 242, 0.03) transparent;
    animation: pulse 10s ease-in-out infinite 5s, rotate 35s linear infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 15vw, 10rem);
    letter-spacing: 0.2em;
    background: linear-gradient(
        135deg, 
        var(--text-primary) 0%, 
        var(--accent-primary) 40%, 
        var(--accent-secondary) 70%,
        var(--accent-tertiary) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    text-shadow: 0 0 120px rgba(255, 45, 85, 0.4);
    margin-bottom: 0.75rem;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

/* Release Banner */
.release-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(
        135deg,
        rgba(255, 45, 85, 0.15) 0%,
        rgba(191, 90, 242, 0.1) 50%,
        rgba(255, 159, 10, 0.08) 100%
    );
    border: 1px solid rgba(255, 45, 85, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards, bannerGlow 3s ease-in-out infinite;
    width: 100%;
    max-width: 420px;
}

@keyframes bannerGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 45, 85, 0.2),
            0 0 40px rgba(191, 90, 242, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 45, 85, 0.35),
            0 0 60px rgba(191, 90, 242, 0.2);
    }
}

.release-badge {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    color: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
    flex-shrink: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.release-info {
    flex: 1;
    min-width: 0;
}

.release-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    line-height: 1.2;
}

.release-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.release-links {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.release-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.release-link svg {
    width: 18px;
    height: 18px;
}

.release-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.5);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 420px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.04) 0%, 
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 45, 85, 0.12) 0%,
        rgba(191, 90, 242, 0.08) 50%,
        rgba(255, 159, 10, 0.04) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.link-item:hover::before {
    opacity: 1;
}

.link-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 45, 85, 0.25),
        0 0 0 1px rgba(255, 45, 85, 0.3);
}

.link-item:hover .icon {
    color: var(--accent-primary);
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 12px rgba(255, 45, 85, 0.5));
}

.link-item:hover span {
    color: var(--text-primary);
}

.icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.link-item span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    opacity: 0.7;
}

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

/* Responsive */
@media (max-width: 480px) {
    .content {
        padding: 1.5rem;
    }

    .hero {
        margin-bottom: 2.5rem;
    }

    .release-banner {
        padding: 0.875rem 1.25rem;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        border-radius: 40px;
    }

    .release-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
    }

    .release-title {
        font-size: 1rem;
    }

    .release-subtitle {
        font-size: 0.7rem;
    }

    .release-link {
        width: 32px;
        height: 32px;
    }

    .release-link svg {
        width: 16px;
        height: 16px;
    }

    .social-links {
        max-width: 100%;
        gap: 1rem;
    }

    .link-item {
        padding: 1rem 1.5rem;
        border-radius: 14px;
    }

    .icon {
        width: 24px;
        height: 24px;
    }

    .triangle-1 {
        border-width: 0 120px 208px 120px;
    }

    .triangle-3 {
        border-width: 0 160px 277px 160px;
    }
}

/* Gradient overlay for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center, 
        transparent 0%, 
        rgba(5, 5, 8, 0.4) 50%,
        var(--bg-dark) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Subtle noise texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}
