@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
    height: 100%;
    overflow: hidden; 
    font-family: 'Nunito', sans-serif;
}

body {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
                url('../imgs/background.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 10px 40px;
    justify-content: space-between;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.discord-btn-top {
    background: #5865F2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.discord-btn-top:hover {
    transform: scale(1.05);
    background: #4752c4;
}

.logo img { 
    cursor: pointer;
    height: 80px; 
    transition: all 0.3s ease; 
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 45, 117, 0.8)); 
}


.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.main-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
}


.card {
    position: relative;
    width: 300px;
    padding: 35px 25px 25px 25px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.card-blue { background: linear-gradient(135deg, #2b7bbb, #1e5a8a); }
.card-orange { background: linear-gradient(135deg, #ff7a3d, #d35400); }

.card h3 { font-size: 18px; margin-bottom: 8px; text-transform: uppercase; font-weight: 900; }
.card p { font-size: 14px; line-height: 1.4; opacity: 0.9; }


.card-avatar {
    position: absolute;
    width: 100px; 
    top: -60px;
    z-index: 10;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.4));
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.left-avatar { left: -25px; }
.right-avatar { right: -25px; top: -90px;}


.card:hover { transform: translateY(-5px); }
.card:hover .card-avatar {
    transform: translateY(-10px) scale(1.1);
}

.stage-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
}

.palco { width: 100%; position: absolute; bottom: 0; z-index: 1; }

.avatar {
    position: absolute;
    bottom: 55px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    z-index: 2;
    transition: 0.2s ease;
    pointer-events: none;
}


.avatar-wave { opacity: 0; }

.stage-container:hover .avatar-normal { opacity: 0; }
.stage-container:hover .avatar-wave { opacity: 1; }


.radio-player {
    display: flex;
    background: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    gap: 20px;
    color: #333;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.radio-player button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #ff2d75;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.radio-player button:hover { transform: scale(1.1); background: #e62266; }

.meta div { font-size: 13px; font-weight: bold; color: #444; }
.meta i { color: #ff2d75; margin-right: 5px; }

.banner {
    background: #ff2d75;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 900;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 45, 117, 0.4);
}

.footer { padding-bottom: 15px; text-align: center; font-size: 12px; opacity: 0.6; }

@media (max-width: 850px) {
    body { overflow-y: auto; }
    .main-row { flex-direction: column; gap: 80px; padding: 40px 0; }
    .site-wrapper { height: auto; }
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    border-left: 1px solid #eee;
    padding-left: 15px;
}

.volume-control i {
    color: #ff2d75;
    font-size: 14px;
}


#volumeSlider {
    width: 80px;
    cursor: pointer;
    accent-color: #ff2d75; 
}

.radio-player {
    padding: 10px 25px;
    max-width: 500px;
}