body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}


.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 80px;
    box-sizing: border-box;
}
.hero h1,
.hero h2,
.hero p,
.hero .buttons {
    animation: reveal 1.5s ease forwards;
    opacity: 0;
}


.hero img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 40px;
    animation: float 6s ease-in-out infinite, glitch 5s infinite;
}


h1 {
    font-size: clamp(45px, 8vw, 90px);
    letter-spacing: clamp(5px, 1.5vw, 18px);
    margin: 0;
    font-weight: 700;
}


h2 {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 5px;
    color: #aaa;
    margin-top: 20px;
}


p {
    max-width: 600px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
}


.buttons {
    margin-top: 40px;
}


.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 14px 35px;
    border: 1px solid white;
    border-radius: 0;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
}


.buttons a:hover {
    background: white;
    color: black;
}


.music,
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


h3 {
    font-size: 35px;
    font-weight: normal;
    letter-spacing: 8px;
}


.release-card {
    margin: 50px auto;
    max-width: 400px;
}


.release-card img {
    width: 100%;
    border-radius: 5px;
}


.release-card h4 {
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 5px;
    margin-top: 30px;
}


.release-card a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 40px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
}


.release-card a:hover {
    background: white;
    color: black;
}
@keyframes glitch {

    0%, 85%, 100% {
        transform: translate(0);
        filter: none;
    }

    86% {
        transform: translate(-3px, 2px);
        filter: contrast(1.3);
    }

    87% {
        transform: translate(3px, -2px);
        filter: contrast(1.5);
    }

    88% {
        transform: translate(-2px, 1px);
    }

    89% {
        transform: translate(0);
    }

}
.profile-glitch {
    position: relative;
    width: min(320px, 80vw);
    height: min(320px, 80vw);
    animation: float 6s ease-in-out infinite;
}


.profile-glitch::before,
.profile-glitch::after {

    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 160px;
    opacity: 0;

    background:
    radial-gradient(
        ellipse,
        rgba(255,255,255,0.35),
        transparent 70%
    );

    filter: blur(8px);

}


.profile-glitch::before {

    left: -70px;
    animation: glitch-left 5s infinite;

}


.profile-glitch::after {

    right: -70px;
    animation: glitch-right 5s infinite;

}



.profile-glitch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}
.profile-glitch {
    animation: imageReveal 1.8s ease forwards, float 6s ease-in-out infinite;
    opacity: 0;
}


@keyframes float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


@keyframes glitch-red {

    0%,90%,100% {
        opacity:0;
        transform:none;
    }

    92% {
        opacity:0.5;
        transform:translate(-5px,0);
    }

    94% {
        opacity:0;
    }

}


@keyframes glitch-blue {

    0%,90%,100% {
        opacity:0;
        transform:none;
    }

    93% {
        opacity:0.5;
        transform:translate(5px,0);
    }

    95% {
        opacity:0;
    }

}
@keyframes glitch-left {

    0%, 85%, 100% {
        opacity:0;
        transform: translateX(0);
    }


    88% {

        opacity:0.7;
        transform: translateX(-20px);

    }


    91% {

        opacity:0;
        transform: translateX(-40px);

    }

}



@keyframes glitch-right {

    0%, 85%, 100% {
        opacity:0;
        transform: translateX(0);
    }


    87% {

        opacity:0.5;
        transform: translateX(20px);

    }


    90% {

        opacity:0;
        transform: translateX(40px);

    }

}
@keyframes reveal {

    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }


    60% {

        opacity: 1;
        filter: blur(0px);

    }


    80% {

        transform: translateY(-5px);

    }


    100% {

        opacity: 1;
        transform: translateY(0);

    }

}
.profile-glitch {
    animation-delay: 0.2s;
}


.hero h1 {
    animation-delay: 0.7s;
}


.hero h2 {
    animation-delay: 1s;
}


.hero p {
    animation-delay: 1.2s;
}


.buttons {
    animation-delay: 1.5s;
}
@keyframes imageReveal {

    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: blur(15px);
    }

    70% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}
.navbar {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 30px 60px;

    box-sizing: border-box;

    z-index: 10;

}


.logo {

    font-size: 22px;
    letter-spacing: 8px;

}


.nav-links a {

    color: white;
    text-decoration: none;

    margin-left: 40px;

    font-size: 14px;

    letter-spacing: 3px;

    opacity: 0.7;

    transition: 0.3s;

}


.nav-links a:hover {

    opacity: 1;

}
.discography {

    display: flex;

    justify-content: center;

    gap: 60px;

    flex-wrap: wrap;

}


.release-card {

    width: 320px;

}


.release-card img {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    border-radius: 5px;

}


.release-card h4 {

    font-size: 28px;

    letter-spacing: 5px;

    font-weight: normal;

}


.release-card p {

    color: #888;

}
@media (max-width: 600px) {

    .navbar {
        padding: 20px;
    }


    .nav-links a {
        margin-left: 15px;
        font-size: 11px;
    }


    .profile-glitch {
        margin-bottom: 30px;
    }


    h2 {
        font-size: 14px;
        letter-spacing: 3px;
    }

}
.hero-content {

    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;

}


.artist-name h1 {

    font-size:120px;
    line-height:0.8;
    letter-spacing:10px;
    text-align:left;

}
.artist-name {

    position:relative;

    animation: name-glitch 5s infinite;

}



@keyframes name-glitch {


0%,85%,100% {

transform:translate(0);

filter:none;

}


87% {

transform:translate(-5px,2px);

filter:contrast(1.5);

}


89% {

transform:translate(4px,-2px);

}


}
@media(max-width:700px){

.hero-content{

flex-direction:column;
gap:40px;

}


.artist-name h1{

font-size:80px;
text-align:center;

}

}
.footer {

    padding: 80px 20px 40px;

    text-align:center;

}


.socials {

    display:flex;

    justify-content:center;

    gap:35px;

}


.socials a {

    color:white;

    text-decoration:none;

    font-size:13px;

    letter-spacing:3px;

    opacity:0.6;

    transition:0.3s;

}


.socials a:hover {

    opacity:1;

}


.footer p {

    margin-top:40px;

    font-size:12px;

    color:#666;

}
.manifesto {

    position:relative;
    width:100%;
    height:70vh;
    overflow:hidden;

}


.manifesto video {

    width:100%;
    height:100%;
    object-fit:cover;

    filter:
    brightness(0.35)
    contrast(1.2);

}


.manifesto-text {

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    z-index:2;

}


.manifesto-text h3 {

    font-size:clamp(35px,6vw,80px);

    letter-spacing:10px;

    line-height:1.1;

    color:white;

}
.contact{

    padding:120px 20px;

}

.contact-text{

    max-width:550px;
    margin:30px auto;

    color:#999;

    line-height:1.8;

}

.contact-button{

    display:inline-block;

    margin-top:30px;

    padding:15px 45px;

    border:1px solid white;

    color:white;

    text-decoration:none;

    letter-spacing:3px;

    transition:.3s;

}

.contact-button:hover{

    background:white;
    color:black;

}
.modal {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.85);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 999;

}

.modal.active {

    opacity: 1;

    visibility: visible;

}

.modal-content {

    background: #000;

    border: 1px solid #444;

    padding: 50px;

    width: min(450px, 90%);

    text-align: center;

    animation: reveal .5s ease;

}

.modal-content h2 {

    letter-spacing: 8px;

    margin-bottom: 25px;

}

.modal-content p {

    color: #aaa;

    line-height: 1.8;

}

.modal-content button {

    margin-top: 30px;

    padding: 12px 35px;

    background: transparent;

    color: white;

    border: 1px solid white;

    cursor: pointer;

    letter-spacing: 3px;

    transition: .3s;

}

.modal-content button:hover {

    background: white;

    color: black;

}
.modal {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.85);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 999;

}

.modal.active {

    opacity: 1;

    visibility: visible;

}

.modal-content {

    background: #000;

    border: 1px solid #444;

    padding: 50px;

    width: min(450px, 90%);

    text-align: center;

    animation: reveal .5s ease;

}

.modal-content h2 {

    letter-spacing: 8px;

    margin-bottom: 25px;

}

.modal-content p {

    color: #aaa;

    line-height: 1.8;

}

.modal-content button {

    margin-top: 30px;

    padding: 12px 35px;

    background: transparent;

    color: white;

    border: 1px solid white;

    cursor: pointer;

    letter-spacing: 3px;

    transition: .3s;

}

.modal-content button:hover {

    background: white;

    color: black;

}