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

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

body:hover .cursor {
    transform: translate(-50%, -50%) scale(1.5);
}

a:hover ~ .cursor,
button:hover ~ .cursor {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(255, 255, 255, 0.2);
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at top, #0a0a0a, #000000),
                radial-gradient(ellipse at bottom, #1a1a2e, #000000);
    overflow: hidden;
}

.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 25s infinite ease-in-out;
}

.background-animation::before {
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.background-animation::after {
    background: linear-gradient(135deg, #16213e, #0f3460, #1a1a2e);
    bottom: -300px;
    right: -300px;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.15;
    }
    25% { 
        transform: translate(150px, -150px) scale(1.2) rotate(90deg);
        opacity: 0.25;
    }
    50% { 
        transform: translate(-100px, 100px) scale(0.8) rotate(180deg);
        opacity: 0.1;
    }
    75% { 
        transform: translate(100px, 150px) scale(1.1) rotate(270deg);
        opacity: 0.2;
    }
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.artist-name {
    font-size: clamp(60px, 15vw, 180px);
    font-weight: 100;
    letter-spacing: 0.1em;
    margin-bottom: 80px;
    text-transform: lowercase;
    animation: fadeIn 1.5s ease-out;
    font-family: 'Courier New', monospace;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch-skew 3s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00de;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00de;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(61px, 9999px, 28px, 0);
        transform: skew(0.3deg);
    }
    5% {
        clip: rect(87px, 9999px, 94px, 0);
        transform: skew(0.8deg);
    }
    10% {
        clip: rect(42px, 9999px, 65px, 0);
        transform: skew(0.2deg);
    }
    15% {
        clip: rect(18px, 9999px, 23px, 0);
        transform: skew(0.5deg);
    }
    20% {
        clip: rect(95px, 9999px, 12px, 0);
        transform: skew(0.1deg);
    }
    25% {
        clip: rect(33px, 9999px, 76px, 0);
        transform: skew(0.7deg);
    }
    30% {
        clip: rect(71px, 9999px, 44px, 0);
        transform: skew(0.4deg);
    }
    35% {
        clip: rect(8px, 9999px, 91px, 0);
        transform: skew(0.9deg);
    }
    40% {
        clip: rect(54px, 9999px, 37px, 0);
        transform: skew(0.3deg);
    }
    45% {
        clip: rect(29px, 9999px, 68px, 0);
        transform: skew(0.6deg);
    }
    50% {
        clip: rect(82px, 9999px, 15px, 0);
        transform: skew(0.2deg);
    }
    55% {
        clip: rect(46px, 9999px, 59px, 0);
        transform: skew(0.8deg);
    }
    60% {
        clip: rect(11px, 9999px, 73px, 0);
        transform: skew(0.1deg);
    }
    65% {
        clip: rect(67px, 9999px, 26px, 0);
        transform: skew(0.5deg);
    }
    70% {
        clip: rect(38px, 9999px, 84px, 0);
        transform: skew(0.7deg);
    }
    75% {
        clip: rect(92px, 9999px, 51px, 0);
        transform: skew(0.4deg);
    }
    80% {
        clip: rect(24px, 9999px, 97px, 0);
        transform: skew(0.9deg);
    }
    85% {
        clip: rect(56px, 9999px, 19px, 0);
        transform: skew(0.3deg);
    }
    90% {
        clip: rect(79px, 9999px, 42px, 0);
        transform: skew(0.6deg);
    }
    95% {
        clip: rect(13px, 9999px, 88px, 0);
        transform: skew(0.2deg);
    }
    100% {
        clip: rect(64px, 9999px, 31px, 0);
        transform: skew(0.8deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(76px, 9999px, 45px, 0);
        transform: skew(0.5deg);
    }
    5% {
        clip: rect(22px, 9999px, 89px, 0);
        transform: skew(0.2deg);
    }
    10% {
        clip: rect(58px, 9999px, 14px, 0);
        transform: skew(0.9deg);
    }
    15% {
        clip: rect(91px, 9999px, 67px, 0);
        transform: skew(0.4deg);
    }
    20% {
        clip: rect(35px, 9999px, 52px, 0);
        transform: skew(0.7deg);
    }
    25% {
        clip: rect(69px, 9999px, 28px, 0);
        transform: skew(0.1deg);
    }
    30% {
        clip: rect(17px, 9999px, 83px, 0);
        transform: skew(0.6deg);
    }
    35% {
        clip: rect(44px, 9999px, 71px, 0);
        transform: skew(0.3deg);
    }
    40% {
        clip: rect(96px, 9999px, 39px, 0);
        transform: skew(0.8deg);
    }
    45% {
        clip: rect(27px, 9999px, 94px, 0);
        transform: skew(0.2deg);
    }
    50% {
        clip: rect(63px, 9999px, 11px, 0);
        transform: skew(0.5deg);
    }
    55% {
        clip: rect(81px, 9999px, 56px, 0);
        transform: skew(0.9deg);
    }
    60% {
        clip: rect(49px, 9999px, 74px, 0);
        transform: skew(0.4deg);
    }
    65% {
        clip: rect(19px, 9999px, 32px, 0);
        transform: skew(0.7deg);
    }
    70% {
        clip: rect(86px, 9999px, 48px, 0);
        transform: skew(0.1deg);
    }
    75% {
        clip: rect(53px, 9999px, 97px, 0);
        transform: skew(0.6deg);
    }
    80% {
        clip: rect(21px, 9999px, 65px, 0);
        transform: skew(0.3deg);
    }
    85% {
        clip: rect(77px, 9999px, 24px, 0);
        transform: skew(0.8deg);
    }
    90% {
        clip: rect(41px, 9999px, 88px, 0);
        transform: skew(0.2deg);
    }
    95% {
        clip: rect(93px, 9999px, 57px, 0);
        transform: skew(0.5deg);
    }
    100% {
        clip: rect(16px, 9999px, 72px, 0);
        transform: skew(0.9deg);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }
    10% {
        transform: skew(-1deg);
    }
    20% {
        transform: skew(1deg);
    }
    30% {
        transform: skew(0deg);
    }
    40% {
        transform: skew(1deg);
    }
    50% {
        transform: skew(-1deg);
    }
    60% {
        transform: skew(0deg);
    }
    70% {
        transform: skew(-1deg);
    }
    80% {
        transform: skew(1deg);
    }
    90% {
        transform: skew(0deg);
    }
    100% {
        transform: skew(-1deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.releases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

@media (min-width: 768px) {
    .releases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .releases {
        grid-template-columns: repeat(3, 1fr);
    }
}

.release-card {
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    transform-origin: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    z-index: -1;
    transition: all 0.5s ease;
}

.release-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

.release-card:hover::after {
    width: 500px;
    height: 500px;
}

.release-card:hover::before {
    filter: blur(30px) brightness(1.2);
}

.release-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 255, 255, 0.1);
}

.release-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

.release-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 100;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
}

.back-link {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.back-link:hover {
    transform: translateX(-15px) scale(1.3) rotate(-10deg);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.album-cover {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 1s ease-out;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.album-cover:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.release-name {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 100;
    letter-spacing: 0.08em;
    margin-bottom: 60px;
    text-transform: lowercase;
    animation: fadeIn 1s ease-out;
}

.platform-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.platform-link {
    padding: 25px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: #fff;
    font-size: clamp(20px, 3vw, 28px);
    letter-spacing: 0.05em;
    text-transform: lowercase;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transform-origin: left;
}

.platform-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.platform-link:hover::before {
    width: 100%;
}

.platform-link:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(20px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    letter-spacing: 0.08em;
}

.platform-link:active {
    transform: translateX(20px) scale(0.98);
}

.platform-link span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .artist-name {
        margin-bottom: 60px;
    }
    
    .back-link {
        top: 20px;
        left: 20px;
        font-size: 30px;
    }
}
