        :root{
            --black: #0C0D0D;
            --dark-gray: #222626;
            --medium-gray: #3F5957;
            --light-gray: #80A6A6;
            --white: #F2F2F2;
        }        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'exo 2', sans-serif;
            background-image: url("./images/31705740-91c1-4d84-989c-0ff0d243fe2c.jpg");
            background-size: 33%;
            background-position: 7.11%;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background: var(--dark-gray);
            border-radius: 50px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 400px;
            width: 100%;
            opacity: 95%;
        }

        .icon{
            width: 25px;
            filter: brightness(0) invert(1);
        }

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

        .profile-pic {
            border-radius: 50%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: var(--white);
            font-weight: bold;
        }

        .artist-name {
            font-size: 24px;
            font-weight: bold;
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .portada{
            width: 100%;
            opacity: 100%;
        }

        .ep-title {
            font-size: 18px;
            color: var(--medium-gray);
            margin: 15px auto;
            font-style: italic;
            font-size: 16px;
        }

        .release-date {
            font-size: 14px;
            color: var(--light-gray);
        }

        .links-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            vertical-align: middle;
        }

        span{
            vertical-align: super;
        }

        .link-button {
            display: block;
            text-decoration: none;
            padding: 15px 20px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 300px;
            background: var(--black);
            color: var(--white);
        }

        .emojiContainer{
            display: contents;
        }

        .link-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .spotify {
            color: white;
        }

        .apple-music {
            color: white;
        }

        .youtube {
            color: white;
        }

        .bandcamp {
            /* color: black; */
        }

        .soundcloud {
            color: white;
        }

        .instagram {
            /* color: var(--black); */
        }

        .twitter {
            /* color: black; */
        }

        .website {
            background: var(--white);
            color: black;
        }

        .footer {
            margin-top: 30px;
            font-size: 12px;
            color: #999;
        }

        /* Responsive design */
        @media (max-width: 480px) {
            .container {
                padding: 30px 20px;
            }

            .profile-pic {
                width: 100px;
                height: 100px;
                font-size: 40px;
            }

            .artist-name {
                font-size: 20px;
            }
        }