img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
html {
    font-size: 16px;
}
body {
    background-color: #ffffff;
    color: rgba(0, 0, 0, 0.85);
    font-family: 'Open Sans', serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    min-height: 100%;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
    overflow: auto;
    position: relative;
}
.container {
    background-color: #ffffff;
    max-width: 480px;
    width: 80%;
    padding: 25px 40px;
    margin: 5vh auto;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    box-shadow: none;
}
a {
    color: #000000;
    text-decoration: none;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.4);
    padding-bottom: 0px;
    transition: all 0.3s ease;
}
a:hover {
    border-color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
}
p {
    margin: 16px 0;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.8;
}
p:first-child {
    margin-top: 0;
}
p:last-child {
    margin-bottom: 0;
}

/* Dropdown styles */
.dropdown {
    margin: 16px 0;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.8;
}

.dropdown-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    width: 100%;
}

.dropdown-header::after {
    content: '+';
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-header::after {
    transform: rotate(45deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0.8;
}

.dropdown.open .dropdown-content {
    max-height: 400px;
}

/* New styles for the header with photo */
.header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header-text {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

/* Song box styles */
.song-box {
    border: 0.5px solid rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.3);
    padding: 8px 10px;
    margin: 16px 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.song-box:hover {
    border-color: rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.5);
}

.album-art {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    margin-right: 10px;
    object-fit: cover;
    flex-shrink: 0;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.song-info {
    flex: 1;
    min-width: 0;
}

.song-title {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 2px 0;
    color: rgba(0, 0, 0, 0.9);
}

.song-artist {
    font-size: 12px;
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.8;
}

.song-box a {
    border: none;
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.song-box a:hover {
    border: none;
}

/* Text Play Button */
.text-play {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 10px;
    flex-shrink: 0;
    padding: 4px 8px;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.text-play:hover {
    color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.5);
}

/* Email popup styles */
.email-trigger {
    cursor: pointer;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.4);
    padding-bottom: 0px;
    transition: all 0.3s ease;
}

.email-trigger:hover {
    border-color: rgba(0, 0, 0, 0.9);
}

.email-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}

.email-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.email-popup {
    background-color: #f8f7f3;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 25px 30px;
    max-width: 400px;
    width: 85%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.email-popup-overlay.show .email-popup {
    transform: scale(1);
}

.email-popup h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    font-family: 'EB Garamond', serif;
}

.email-item {
    margin: 12px 0;
    padding: 10px 12px;
    border: 0.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}co

.email-item:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.5);
}

.email-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.email-address {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.9);
    font-family: 'EB Garamond', serif;
    letter-spacing: 0.01em;
}

.email-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
    padding: 8px;
    line-height: 1;
}

.email-popup-close:hover {
    color: rgba(0, 0, 0, 0.9);
}

.email-copied {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.email-copied.show {
    opacity: 1;
    transform: translateY(0);
}

.footer {
    margin-top: 40px;
    opacity: 0.7;
    font-size: 12px;
    text-align: center;
}

/* Add responsive adjustments for mobile */
@media (max-width: 600px) {
    .container {
        width: 70%;
        max-width: 400px;
        padding: 22px 30px;
        margin: 4vh auto;
    }
    
    .profile-photo {
        width: 60px;
        height: 60px;
        margin-right: 12px;
    }
    
    .song-box {
        padding: 8px 10px;
    }
    
    .album-art {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    
    .song-title {
        font-size: 12px;
    }
    
    .song-artist {
        font-size: 11px;
    }
    
    .text-play {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .email-popup {
        padding: 20px 25px;
        width: 80%;
        max-width: 320px;
    }
}