@font-face {
    font-family: 'HeyWow Bold';
    src: url('assets/font/heywow/HeyWowBold.ttf');
}
@font-face {
    font-family: 'HeyWow ExtraBold';
    src: url('assets/font/heywow/HeyWowExtraBold.ttf');
}
@font-face {
    font-family: 'HeyWow Heavy';
    src: url('assets/font/heywow/HeyWowHeavy.ttf');
}
@font-face {
    font-family: 'HeyWow Book';
    src: url('assets/font/heywow/HeyWowBook.ttf');
}
@font-face {
    font-family: 'HeyWow Medium';
    src: url('assets/font/heywow/HeyWowMedium.ttf');
}
@font-face {
    font-family: 'HeyWow Regular';
    src: url('assets/font/heywow/HeyWowRegular.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::selection {
    background: #ffffff;
    color: #000;
}

body {
    background: #000;
    font-family: 'HeyWow Medium';
    overflow-x: hidden;
}

section {
    width: 100%;
    height: 100vh;
    position: relative;
}

nav {
    z-index: 120;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    padding: 10px 20px 40px 20px;
    top: 0;
    left: 0;
    justify-content: space-between;
    text-align: center;
    backdrop-filter: blur(10px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

nav .logo h1 {
    color: #fff;
    font-size: 1.5rem;
}

nav .logo img {
    width: 40px;
    height: 40px;
    filter: invert(1);
    user-select: none;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

nav ul:last-child li a {
    text-decoration: none;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
    user-select: none;
}

nav ul:last-child li a:hover {
    background: #ffffff1e;
    color: #fff;
}

nav ul li a:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4);
}

.hero-text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text p {
    position: absolute;
    bottom: calc(25% - 3rem);
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    z-index: 100;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4);
}

.headline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff9f9;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    z-index: 100;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%);
}

.artists-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

.artists-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/texture.png') no-repeat center center/cover;
    z-index: -1;
    filter: invert(1) blur(3px);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.3;
}

.artists-container .texts {
    margin-top: 70px;
    width: 100%;
    padding: 0 1rem 0 1rem;
    color: #fff;
}

.artists-container .texts h2 {
    font-size: 16px;
    user-select: none;
    margin-left: 2vw;
}

.artists-container .texts h1 {
    font-size: 22.5vw;
    margin: 0;
    user-select: none;
    text-align: center;
    line-height: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.1);
}

.artists-container .texts1 {
    padding: 0 2vw 0 2vw;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.1);
}

.artists-container img {
    position: absolute;
    max-width: 100%;
    height: 90%;
    bottom: 0;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 98%, rgba(0,0,0,0) 100%);
    user-select: none;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    padding-top: 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    backdrop-filter: blur(5px);
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

footer p {
    filter: invert(1);
    font-family: 'HeyWow Bold';
    padding: 4px;
    font-size: 14px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
}

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer a {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
}