/* Grundlayout */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Russo One', sans-serif;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#bassCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.container {
    text-align: center;
    background: rgba(15,15,15,0.9);
    padding: 50px;
    border-radius: 20px;
    width: 95%;
    max-width: 650px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(255,255,255,0.05);
    z-index: 1;
    position: relative;
}

/* Logo */
.logo {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 5px solid rgba(255,0,0,0.6);
    box-shadow: 0 0 35px rgba(255,0,0,0.6);
}

/* Artist Name */
.artist-name {
    font-size: 54px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: white;
}

/* Social Buttons */
.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.btn {
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 13px;
    transition: 0.3s;
    font-weight: bold;
}

.spotify-btn {
    background: black;
    border: 1px solid #1DB954;
    color: #1DB954;
}
.spotify-btn:hover { background: #1DB954; color: black; }

.insta-btn {
    background: black;
    border: 1px solid white;
    color: white;
}
.insta-btn:hover { background: white; color: black; }

.text-box {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.85;
}

.news-box {
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,0,0,0.6);
    padding: 15px;
    border-radius: 15px;
    max-height: 180px;
    overflow-y: auto;
}

.news-item {
    margin-bottom: 10px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}