#mc_embed_signup {
    width: 100%;
    background: transparent !important;
}

html,
body {
    overscroll-behavior-x: none;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: "Frank Ruhl Libre", "Frank Ruehl CLM", serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    color: #cccccc;
}

.content-wrapper {
    width: 95%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.split-stage {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    /* border: 1px solid #222; */
}

.stage-panel {
    flex: 1;
    padding: 0;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.stage-left {
    border-bottom: none;
    justify-content: center;
    min-height: 300px;
    background-color: black;
}

.stage-right {
    height: auto;
    overflow: visible;
}

@media (min-width: 768px) {
    .split-stage {
        flex-direction: row;
        align-items: stretch;
        height: 550px;
    }

    .stage-panel {
        height: 100%;
        min-height: 0;
    }

    .stage-left {
        border-bottom: none;
        border-right: none;
        width: 50%;
        overflow: hidden;
    }

    .stage-right {
        width: 50%;
        height: 100%;
        overflow-y: auto;
    }
}

@media (max-width: 767px) {
    .content-wrapper {
        width: 100%;
        padding-top: 0;
        gap: 0;
    }

    .split-stage {
        border-radius: 0;
        margin-bottom: 0;
        border: none;
    }

    .text-content-wrapper,
    .player-controls-container,
    .playlist,
    .paypal-button-container {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 20px;
    }

    #introContent {
        padding-top: 20px;
    }
}

.panel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: invert(1);
}

#introContent>img {
    filter: invert(1);
}

.text-content-wrapper {
    padding: 40px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    margin: auto;
}

.text-content-wrapper h2 {
    margin-top: 0;
    font-size: medium;
}

.text-content-wrapper p {
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.hidden {
    display: none !important;
}

.player-controls-container {
    width: 100%;
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
    text-align: center;
    margin-top: 10px;
}

.controls {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

button {
    background-color: #333333;
    border: 1px solid #444;
    color: #ffffff;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.progress-wrapper {
    margin: 15px 0;
}

.progress-container {
    background: #333333;
    cursor: pointer;
    height: 8px;
    border-radius: 4px;
    position: relative;
}

.progress-bar {
    background: #ffffff;
    height: 100%;
    width: 0%;
    border-radius: 4px;
}

.time-display {
    font-size: 12px;
    margin-top: 5px;
}

.player-controls-container {
    display: none;
}


.playlist {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 30px;
}

.playlist ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.playlist li {
    position: relative;
    cursor: pointer;
    border: 1px solid #333;
    background-color: #111;
    overflow: hidden;
    height: auto;
    min-height: 42px;
    transition: border-color 0.2s;
    flex: 0 1 auto;
    display: flex;
    align-items: center;
}

.playlist li:hover {
    border-color: #666;
}

.playlist li.active {
    border-color: #fff;
}

.playlist-item-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    pointer-events: none;
    gap: 10px;
}

.playlist-item-content .play-icon-btn,
.playlist-item-content a.download-link {
    pointer-events: auto;
    cursor: pointer;
}

/* --- NEW CSS ICONS --- */
.play-icon-btn {
    /* Ensure the container centers the shapes */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Play Triangle */
.css-icon-play {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    /* This creates the triangle. currentColor inherits the parent's text color (#888 or #fff) */
    border-left: 11px solid currentColor;
    margin-left: 2px;
    /* Optical adjustment to center the triangle visually */
}

/* The Pause Bars */
.css-icon-pause {
    width: 11px;
    height: 12px;
    /* Creates two vertical lines using borders */
    border-left: 4px solid currentColor;
    border-right: 4px solid currentColor;
    box-sizing: border-box;
}

.track-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #333;
    z-index: 1;
    transition: width 0.1s linear;
}

.play-icon-btn {
    font-style: normal;
    font-size: 1.2em;
    min-width: 20px;
    text-align: center;
    color: #888;
    transition: color 0.2s;
    line-height: 1;
}

.play-icon-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.playlist li.active .play-icon-btn {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.track-time {
    font-family: monospace;
    font-size: 0.85em;
    color: #888;
    min-width: 35px;
    text-align: right;
}

.playlist li.active .track-time {
    color: #fff;
    font-weight: bold;
}

.playlist-item-content a.download-link {
    font-size: 10px;
    color: #666;
    text-decoration: none;
    border: 1px solid #444;
    padding: 2px 4px;
    border-radius: 3px;
    text-transform: uppercase;
}

.playlist-item-content a.download-link:hover {
    background-color: #fff;
    color: #000;
}

.booklet-controls {
    display: flex;
}

.booklet-controls button {
    background: transparent;
    border: 1px solid #444;
    font-size: 18px;
    padding: 5px 15px;
    margin: 0;
}

.booklet-label {
    font-size: 0.9em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-link {
    font-size: 12px;
    color: #ffffff;
    text-decoration: underline;
    margin-left: 10px;
    display: none;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    border-radius: 8px;
    filter: none;
}

.paypal-btn {
    background-color: #444444;
    color: #ffffff;
    border: 1px solid #555;
    border-radius: 24px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.paypal-btn:hover {
    background-color: #666666;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    color: #fff;
}

.paypal-logo-svg {
    height: 20px;
    width: auto;

}

.paypal-button-container {
    width: 100%;
    text-align: left;
}

#nextBtn,
#prevBtn {
    display: none;
}



#mc_embed_signup .mc-field-group input {
    background-color: #222 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
}

#mc_embed_signup .button {
    background-color: #333 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
    transition: all 0.3s ease !important;
}

#mc_embed_signup .button:hover {
    background-color: #fff !important;
    color: #000 !important;
}

.no-invert {
    filter: none !important;
}