body, html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 22px;
    background-color: #F5F4F0;
    background-image: linear-gradient(to bottom, #F5F4F0, #DDDCD7);
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-weight: bold;
    font-size: 52px;
    color: #180161;
    margin: 0px;
}

h3 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-weight: bold;
    font-size: 32px;
    margin: 0px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

a {
    text-decoration: none;
    color: #7C00FE;
}

p {
    margin: 8px 0px 32px 0px;
}

/* Share pages common styles */
h2 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-weight: bold;
    font-size: 28px;
    margin: 0 0 16px 0;
}

.description {
    font-style: italic;
    color: #666;
    margin: 16px 0;
}

/* Download buttons styling */
#download-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

#download-buttons button {
    display: contents;
}

#download-buttons img {
    height: 50px;
    width: auto;
    border-radius: 10px;
    border: solid 2px white;
}

/* Open in app button styling */
#open-app-button {
    margin-top: 20px;
    text-align: center;
}

#open-app-button button {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#open-app-button button:hover {
    background: #FF7700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Share pages layout - override body styles for share pages */
body.share-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-width: 320px;
    margin: 0px;
    padding: 0px;
}

body.share-page #wrapper {
    width: 1200px;
    margin: 32px;
    padding: 0px;
    display: flex;
    gap: 50px;
    align-items: top;
    flex-direction: row;
}

body.share-page #content {
    width: 100%;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Cover section for all pages */
.cover-section {
    min-width: 400px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Cover container for podcast and playlist pages */
.cover-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive design for share pages */
@media(max-width: 800px) {
    body.share-page #wrapper {
        width: 400px;
        align-items: center;
        flex-direction: column;
    }
    
    .cover-section {
        min-width: 100%;
        max-width: 100%;
    }
    
    .cover-container {
        min-width: 100%;
        max-width: 100%;
    }
}

@media(max-width: 500px) {
    body.share-page #wrapper {
        gap: 0px;
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

    body.share-page #content {
        padding: 24px;
    }
}
