@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('assets/Carso_Sleep_White_750x750.png');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(3px);
    opacity: 0.05;
    z-index: -1;
}

.container {
    max-width: 500px;
    width: 100%;
}

header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.band-logo {
    width: 90%;
    max-width: 280px;
    margin: 10px auto;
    display: block;
}

.band-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #ececec;
    margin-bottom: 20px;
}

.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-btn {
    background-color: #222222;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s;
    position: relative;
    border: 1px solid #333333;
}

.link-btn i {
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: 15px;
    background-color: transparent;
    border: 2px solid transparent;
}

.facebook-icon {
    color: #1877F2;
    border-color: #1877F2;
}

.instagram-icon {
    color: #E4405F;
    border-color: #E4405F;
}

.youtube-icon {
    color: #FF0000;
    border-color: #FF0000;
}

.spotify-icon {
    color: #1DB954;
    border-color: #1DB954;
}

.apple-icon {
    color: #A2AAAD;
    border-color: #A2AAAD;
}

.amazon-icon {
    color: #FF9900;
    border-color: #FF9900;
}

.graphics-icon {
    color: #777777;
    border-color: #777777;
}

.mail-icon {
    color: #D44638;
    border-color: #D44638;
}

.link-btn:hover {
    background-color: #333333;
    transform: scale(1.05);
}

footer {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.icon-btn {
    font-size: 26px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid transparent;
    background-color: transparent;
    position: relative;
}

.mail-icon {
    color: #D44638;
    border: 3px solid #D44638;
}

.whatsapp-icon {
    color: #25D366;
    border: 3px solid #25D366;
}

.icon-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 375px) {
    .body {
        align-items: start;
    }

    .band-logo {
        max-width: 220px;
        margin-bottom: 15px;
    }

    .band-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .link-btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .link-btn i {
        font-size: 18px;
        width: 30px;
        height: 30px;
        left: 10px;
    }
}