* {
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    box-sizing: border-box;
}

body {
    background: url('https://ik.imagekit.io/elaravoid/sunera-sae/bg-grain.jpg?updatedAt=1784899972972');
    background-size: 50%;
    padding: 0px;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

h2 {
    color: #F0D3ED;
    text-shadow:
        -1px -1px 0 #3F7B5C,
        0 -1px 0 #3F7B5C,
        1px -1px 0 #3F7B5C,
        1px 0 0 #3F7B5C,
        1px 1px 0 #3F7B5C,
        0 1px 0 #3F7B5C,
        -1px 1px 0 #3F7B5C,
        -1px 0 0 #3F7B5C;
    font-family: "Mansalva";
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 15px;
}

a {
    color: #4455B1;
    text-decoration: underline;
    text-decoration-style: dotted;
}

a:hover {
    text-decoration-style: solid;
}

.wrapper {
    display: flex;
    min-height: 100vh;
}

.tab-content-wrapper {
    margin-left: 15%;
    flex: 1;
    padding: 50px 50px 50px 50px;
    min-height: 100vh;
    width: 88%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabs {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    width: 15%;
    gap: 10px;
    height: calc(100vh - 0px);
    padding: 50px 20px 50px 50px;
    border-right: 1px solid #4455B1;
    z-index: 100;
    overflow: hidden;
    background: url('https://ik.imagekit.io/elaravoid/sunera-sae/dithered/1000178913-dithered_x_RKBnayk.png?updatedAt=1785664170405');
    background-size: auto 100%;
    background-position: center;
}

.tab {
    border: 4px double #4455B1;
    padding: 5px 10px;
    background: linear-gradient(0deg, #F0D3ED, #FDF6E2);
    font-size: 1rem;
    color: #4455B1;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Mansalva";
    text-align: center;
    width: 100%;
}

.tab:hover {
    scale: 0.95;
}

.tab.active {
    background: linear-gradient(0deg, #abd69e, #FDF6E2);
    transform: translateX(24px);
    border-radius: 30px 0 0 30px;
}

.tabs button {
    border: 4px double #4455B1;
    padding: 4px 10px;
    background: linear-gradient(0deg, #F0D3ED, #FDF6E2);
    font-size: 1rem;
    color: #4455B1;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Mansalva";
}

.tabs button:hover {
    scale: 0.95;
}

.tab.active:hover {
    scale: 1;
}

.flag-emoji {
    display: inline-block;
    line-height: 1;
    text-shadow:
        -1px -1px 0 #3F7B5C,
        0 -1px 0 #3F7B5C,
        1px -1px 0 #3F7B5C,
        1px 0 0 #3F7B5C,
        1px 1px 0 #3F7B5C,
        0 1px 0 #3F7B5C,
        -1px 1px 0 #3F7B5C,
        -1px 0 0 #3F7B5C;
}

.review-icon {
    color: #3F7B5C;
}

select {
    width: 100%;
    padding: 5px 10px;
    background: linear-gradient(0deg, #CBECEE, #FDF6E2);
    border: 4px double #4455B1;
    color: #4455B1;
    font-family: "Mansalva";
    font-size: 1rem;
    text-align: center;
}

.resetbutton {
    border: 4px double #4455B1;
    padding: 4px 10px;
    background: linear-gradient(0deg, #abd69e, #FDF6E2);
    font-size: 1rem;
    color: #4455B1;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Mansalva";
}

.resetbutton:hover {
    scale: 1.05;
}

.resetbutton:active {
    scale: 0.95;
}


/* =========================================================
   MOVIES
========================================================= */

.movie-filter {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 15%;
    height: calc(50vh - 0px);
    gap: 10px;
    padding: 50px 20px 50px 50px;
    z-index: 100;
    overflow: hidden;
    border-right: 4px double #4455B1;
    justify-content: end;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 0px;
}

.media-item {
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.media-item.has-review {
    cursor: pointer;
}

.media-item.no-review {
    cursor: default;
}

.media-item .cover {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid #3F7B5C;
    background: url('https://ik.imagekit.io/elaravoid/sunera-sae/dithered/1000178905-dithered.png?updatedAt=1785664072787');
    background-size: 100%;
}

.media-item .cover img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.media-item .info {
    width: 100%;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    gap: 2px;
    background: #FDF6E2;
    line-height: 1.4;
    border: 1px solid #3F7B5C;
    border-top: none;
}

.media-item .info-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.media-item .title {
    font-family: "Mansalva";
    font-size: 0.97rem;
    color: #4455B1;
    font-weight: bold;
    min-height: 40px;
    width: 100%;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.media-item .title-name {
    overflow: hidden;
}

.media-item .title-year {
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 3px;
}

.media-item .flag {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.media-item .date-watched {
    font-family: "Kanit";
    font-size: 0.8rem;
    color: #3F7B5C;
}

.media-item .rating {
    font-family: "Kanit";
    font-size: 0.8rem;
    color: #F9B472;
    text-shadow:
        -1px -1px 0 #3F7B5C,
        0 -1px 0 #3F7B5C,
        1px -1px 0 #3F7B5C,
        1px 0 0 #3F7B5C,
        1px 1px 0 #3F7B5C,
        0 1px 0 #3F7B5C,
        -1px 1px 0 #3F7B5C,
        -1px 0 0 #3F7B5C;
    flex-shrink: 0;
}

.media-item .review-overlay {
    aspect-ratio: 3/4;
    border: 1px solid #3F7B5C;
    position: absolute;
    inset: 0;
    overflow: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: start;
    padding: 10px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    background: rgb(251, 217, 133, 0.8);
    color: #3F7B5C;
    font-family: "Kanit";
    line-height: 1.2;
    font-weight: 400;
    font-size: 0.95rem;
}

.media-item .review-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.media-item .info.hidden {
    display: none;
}


/* =========================================================
   SERIES
========================================================= */

.series-filter {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 15%;
    height: calc(50vh - 0px);
    gap: 10px;
    padding: 50px 20px 50px 50px;
    z-index: 100;
    overflow: hidden;
    border-right: 4px double #4455B1;
    justify-content: end;
}

/* Series menggunakan class yang sama dengan Movies (.media-grid, .media-item, dll) */


/* =========================================================
   MUSIC
========================================================= */

/* ---------- STAGE ---------- */

.stage {
    position: relative;
    width: 100%;
    height: 35rem;
    display: flex;
    align-items: center;
    margin: 5px 0 35px 0;
}

/* ---------- TRACKLIST CARD ---------- */

#tracklist li.no-audio {
    cursor: default;
}

#tracklist li.has-audio {
    cursor: pointer;
}

.card {
    position: relative;
    z-index: 2;
    width: 38rem;
    background: url("https://ik.imagekit.io/elaravoid/sunera-sae/cd-cover-orange.png");
    background-size: 100%;
    padding: 20px 20px 20px 77px;
    aspect-ratio: 1 / 0.92;
    overflow: auto;
}

ol.tracklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol.tracklist li {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    column-gap: 15px;
    padding: 2px 8px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1rem;
    color: #3F7B5C;
    background: transparent;
    font-family: "Mansalva";
    font-weight: 400;
    transition: background 0.2s ease, color 0.2s ease;
}

.tracklist .num {
    width: 10px;
    display: inline-block;
    text-align: right;
}

.tracklist .title {
    min-width: 0;
}

ol.tracklist li:hover {
    background: rgb(240, 211, 237, 0.7);
}

/* ---------- ACTIVE TRACK ---------- */

ol.tracklist li.active {
    color: #4455B1;
    background: #F0D3ED;
    box-shadow: inset 0 0 20px #F9B472;
    border: 1px solid #3F7B5C;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 15px;
    row-gap: 0;
    align-items: first baseline;
    font-weight: 700;
}

ol.tracklist li.active .num {
    grid-column: 1;
    grid-row: 1 / 3;
    color: #4455B1;
    font-weight: 700;
}

ol.tracklist li.active .title {
    grid-column: 2;
    grid-row: 1;
    color: #4455B1;
    font-weight: 700;
    min-width: 0;
    line-height: 1.2;
}

/* ---------- PLAYER CONTROLS ---------- */

.active-controls {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    white-space: nowrap;
}

.active-controls button {
    border: 0;
    outline: 0;
    background: transparent;
    color: #4455B1;
    padding: 0;
    cursor: pointer;
    font-family: "Kanit";
    font-size: 1rem;
    line-height: 1;
}

.active-controls button:hover {
    color: #4455B1;
}

.active-controls button:active {
    transform: scale(0.95);
}

/* ---------- PROGRESS ---------- */

.active-progress {
    grid-column: 2 / 4;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    font-family: "Kanit";
    font-size: 0.7rem;
    font-weight: 400;
    color: #4455B1;
    margin: 5px 0;
}

.active-progress input {
    flex: 1;
    min-width: 0;
    height: 4px;
    margin: 0;
    accent-color: #4455B1;
    cursor: pointer;
}

.active-current,
.active-duration {
    flex-shrink: 0;
    width: 30px;
}

.active-duration {
    text-align: right;
}

/* ---------- CD ---------- */

.cd-wrap {
    position: absolute;
    top: 50%;
    left: 21rem;
    z-index: 1;
    transform: translateY(-50%) translateX(-260px) scale(0.7);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(.22, .9, .28, 1), opacity 1.5s ease;
    pointer-events: none;
}

.cd-wrap.out {
    transform: translateY(-50%) translateX(0) scale(1);
    opacity: 1;
}

.cd-wrap.switching {
    transition: transform 0.7s cubic-bezier(.22, .9, .28, 1), opacity 0.7s ease;
}

.cd-wrap.switching.out {
    transform: translateY(-50%) translateX(260px) scale(0.7);
    opacity: 0;
}

.cd {
    width: 33rem;
    height: 33rem;
    border-radius: 50%;
    position: relative;
    background: #abd69e;
    overflow: hidden;
    animation: spin 10s linear infinite;
    border: 4px solid #F0D3ED;
    outline: 6px solid rgb(240, 211, 237, 0.5);
}

.cd.paused {
    animation-play-state: paused;
}

.cd-art {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    transition: background-image 0.2s ease;
}

.cd-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8rem;
    height: 8rem;
    background: #abd69e;
    outline: 12px double rgb(240, 211, 237);
    border: 30px solid rgb(240, 211, 237, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ---------- INDONESIA MUSIC PLAYER ---------- */

.indo-player-area {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 15px;
}

.indo-active-player {
    width: 280px;
    flex-shrink: 0;
    display: none;
    background: linear-gradient(0deg, #F9B472, #F0D3ED, #F9B472);
    border: 4px double #3F7B5C;
    padding: 10px;
    color: #4455B1;
    font-family: "Kanit";
    border-radius: 100px;
}

.indo-active-player.show {
    display: block;
}

.indo-player-header {
    display: flex;
    gap: 8px;
    align-items: center;
}

.indo-player-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.indo-player-title {
    font-family: "Mansalva";
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indo-player-artist {
    font-size: 0.75rem;
}

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

.indo-player-controls button {
    border: 0;
    background: transparent;
    color: #4455B1;
    cursor: pointer;
    font-family: "Kanit";
    font-size: 1rem;
    padding: 0 3px;
}

.indo-player-controls button:hover {
    transform: scale(1.1);
}

.indo-player-progress {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    font-size: 0.65rem;
}

.indo-player-progress input {
    flex: 1;
    min-width: 0;
    height: 4px;
    accent-color: #4455B1;
    cursor: pointer;
}

.indo-player-current,
.indo-player-duration {
    width: 30px;
    flex-shrink: 0;
}

.indo-player-duration {
    text-align: right;
}

.indonesiasongs {
    width: 75%;
    justify-content: end;
    margin: 0 0 0 auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.indonesiasongs .bungkus.active {
    background: #F0D3ED;
    outline: 1px solid #3F7B5C;
    box-shadow: inset 0 0 15px #F9B472;
}

.indonesiasongs .bungkus.has-audio {
    cursor: pointer;
}

.indonesiasongs .bungkus.no-audio {
    cursor: default;
}

.bungkus {
    background: #FDF6E2;
    padding: 4px;
    height: 3rem;
    display: flex;
    gap: 5px;
    width: max-content;
    line-height: 1.4;
    cursor: pointer;
}

.indo-player {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indo-play {
    width: 2rem;
    height: 2rem;
    border: 2px solid #4455B1;
    background: #F0D3ED;
    color: #4455B1;
    cursor: pointer;
    font-family: "Kanit";
    font-size: 0.8rem;
    padding: 0;
}

.indo-play:hover {
    background: #CBECEE;
}

.indo-play:active {
    transform: scale(0.95);
}

.indo-kiri img {
    width: 2.5rem;
    aspect-ratio: 1/1;
}

.indo-kanan {
    color: #3F7B5C;
    font-family: 'Kanit';
}

.judul {
    font-weight: 500;
    font-size: 1rem;
}

.penyanyi {
    font-weight: 300;
    font-size: 0.8rem;
}


/* =========================================================
   BOOKSHELF
========================================================= */

.bs-wrap {
    width: 100%;
}

.bs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

.bs-shelf-outer {
    position: relative;
    width: 100%;
    background: url('https://ik.imagekit.io/elaravoid/sunera-sae/dithered/1000178921-dithered%20(1).png?updatedAt=1785758101959');
    background-size: 25%;
    display: flex;
    flex-direction: column;
    border: 4px double #3F7B5C;
    min-height: 300px;
}

.bs-viewport {
    overflow: hidden;
    padding: 20px 0px 10px 0px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0px;
    cursor: grab;
}

.bs-viewport:active {
    cursor: grabbing;
}

.bs-books-row {
    display: flex;
    align-items: flex-end;
    gap: 0px;
    width: max-content;
    will-change: transform;
}

/* ---------- ARROWS ---------- */

.bs-arrow {
    position: absolute;
    top: -4px;
    width: 36px;
    height: 36px;
    background: #CBECEE;
    border: 4px double #3F7B5C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #4455B1;
    opacity: 0;
    pointer-events: none;
    font-size: 1.5rem;
    font-family: "Mansalva";
    transition: opacity 0.3s ease;
}

.bs-arrow:hover {
    scale: 1.05;
}

.bs-arrow-left {
    left: -4px;
}

.bs-arrow-right {
    right: -4px;
}

.bs-arrow.visible {
    opacity: 1;
    pointer-events: all;
}

/* ---------- BOOK ITEMS ---------- */

.bs-book-wrap {
    flex-shrink: 0;
    transform-origin: bottom center;
    transition: transform 50ms ease;
    padding: 8px;
    margin: -8px;
}

.bs-book-wrap.open {
    transform: rotateZ(0deg) !important;
    margin-right: 3px;
}

.bs-book-btn {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    flex-shrink: 0;
    outline: none;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    gap: 0;
    transition: width 50ms ease;
    will-change: auto;
}

.bs-book-btn:focus,
.bs-book-btn:focus-visible,
.bs-book-btn:active,
.bs-book-btn:hover {
    transform: translate(0px, -2px);
    transition: 200ms ease;
    outline: none;
    background: none;
    scale: 1.05;
}

.bs-spine {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transform-origin: right center;
    transform: rotateY(0deg);
    transition: all 500ms ease;
    will-change: auto;
    filter: brightness(0.8) contrast(2);
    transform-style: preserve-3d;
}

.bs-cover {
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    transform-origin: left center;
    transform: rotateY(88.8deg);
    transition: all 500ms ease;
    will-change: auto;
    filter: brightness(0.8) contrast(2);
    transform-style: preserve-3d;
    visibility: hidden;
}

.bs-book-btn.open .bs-spine {
    transform: rotateY(-60deg);
}

.bs-book-btn.open .bs-cover {
    transform: rotateY(10deg);
    visibility: visible;
}

.bs-paper-tex {
    pointer-events: none;
    position: absolute;
    inset: 0;
    opacity: 0.28;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='8' result='n'/%3E%3CfeDiffuseLighting in='n' lighting-color='white' surfaceScale='1'%3E%3CfeDistantLight azimuth='45' elevation='35'/%3E%3C/feDiffuseLighting%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23p)'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    background-repeat: repeat;
}

.bs-binding {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 2px,
            rgba(255, 255, 255, 0.5) 3px,
            rgba(255, 255, 255, 0.25) 4px,
            rgba(255, 255, 255, 0.25) 6px,
            transparent 7px,
            transparent 9px,
            rgba(255, 255, 255, 0.25) 9px,
            transparent 12px);
}

.bs-spine-judul {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
    margin-top: 16px;
    font-family: 'Mansalva';
}

.bs-cover svg,
.bs-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.bs-cover img {
    object-fit: cover;
}

/* ---------- REVIEW SECTION ---------- */

.bs-review {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, #CBECEE, #FDF6E2, #CBECEE);
    display: flex;
    align-items: flex-start;
    border-image-slice: 28;
    border-image-width: 28px;
    border-image-repeat: round;
    border-style: solid;
    border-color: transparent;
    image-rendering: pixelated;
    border-image-source: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEEAAABBBAMAAAB82dR2AAAAElBMVEXGj4MAAACJobeJl1uKmF2NmmDUl4P+AAAAAnRSTlP/AOW3MEoAAAEoSURBVHja3ZWBaexADERvS3g7/gX4dzCogish/TcTk8W3Z51jHQQCZAAYYJDlx0q61Wpca0usK9A7sLlkNrclNttXVv5zYvqbNbjQVw24+o2RaHynRyIMBKCj8Uh0mmWCQMm49T2BBNgczJ6ApvOEZh8CA4KD2RPr2oizhEwbxGgQ1vErIgytzxoyLM81glHj0YeMmTJB7lQyUyGMmMQAAqZG/JkYKDC7rIAjMQhiJsJy7gOI/JFMTLYZsuOVmHaUMMyiRMyA7wzdDTgRy5p9lInJI2vyqBI/7CMTy8rE/pGkV2JJf5xYfh+Z2JLeWCJWvNP6rdfzUs9cPbf17Nf7Y+4gAXwACxC8u8fqXVjv03on13u9vg31falvVH3nylv5ezeba91qfQJnLZppR13+QgAAAABJRU5ErkJggg==");
    min-height: 300px;
}

.bs-review-empty {
    position: absolute;
    width: 100%;
    inset: 0;
    display: flex;
    align-items: start;
    font-size: 1rem;
    padding: 24px;
    font-family: 'Mansalva';
    color: #3F7B5C;
    transition: opacity 0.3s ease;
}

.bs-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    gap: 20px;
    transition: all 0.3s ease;
}

.bs-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.bs-card.exit-l {
    opacity: 0;
    transform: translateX(-20px);
}

.bs-card.exit-r {
    opacity: 0;
    transform: translateX(20px);
}

.bs-card.enter-l {
    opacity: 0;
    transform: translateX(20px);
}

.bs-card.enter-r {
    opacity: 0;
    transform: translateX(-20px);
}

.bs-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.bs-card-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.bs-card-judul {
    font-size: 2rem;
    font-weight: 600;
    color: #F0D3ED;
    text-shadow:
        -1px -1px 0 #3F7B5C,
        0 -1px 0 #3F7B5C,
        1px -1px 0 #3F7B5C,
        1px 0 0 #3F7B5C,
        1px 1px 0 #3F7B5C,
        0 1px 0 #3F7B5C,
        -1px 1px 0 #3F7B5C,
        -1px 0 0 #3F7B5C;
    line-height: 1.2;
    margin-bottom: 0;
    font-family: "Mansalva";
}

.bs-card-penulis {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    color: #3F7B5C;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "Kanit";
}

.bs-card-review {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    color: #3F7B5C;
    font-family: "Kanit";
    margin: 0;
    flex-direction: column;
}

.bs-card-review p {
    margin: 0 0 10px 0;
}

.bs-card-review p:last-child {
    margin-bottom: 0;
}


@media screen and (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    body {
        width: 100%;
        overflow-x: hidden;
        background-size: 100%;
    }

    h2 {
        font-size: 2rem;
    }

    .wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .tabs {
        position: sticky;
        left: auto;
        top: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
        gap: 5px;
        padding: 15px 15px 10px 15px;
        border-right: none;
        border-bottom: 1px solid #4455B1;
        background-size: 50%;
        overflow: auto;
        scrollbar-width: none;
        z-index: 1000;
    }

    .tab {
        flex: 0 0 auto;
        width: auto;
        min-width: 0px;
        line-height: 1;
        padding: 4px 2px;
    }

    .tab.active {
        transform: none;
        border-radius: 20px 20px 0 0px;
        transform: translateY(11px);
    }

    .tabs button {
        flex: 0 0 auto;
    }

    .tabs button:hover {
        scale: 1;
    }


    /* =====================================================
       CONTENT
    ===================================================== */

    .tab-content-wrapper {
        margin-left: 0;
        width: 100%;
        padding: 15px;
    }

    .tab-content {
        width: 100%;
    }


    /* =====================================================
       MOVIES / SERIES FILTER
    ===================================================== */

    .media-item .rating,
    .flag-emoji {
        text-shadow: none;
    }

    .movie-filter,
    .series-filter {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0;
        margin-bottom: 10px;
        border-right: none;
        gap: 5px;
        flex-direction: row;
    }

    select {
        border-color: #3F7B5C;
        color: #3F7B5C;
    }

    .tab-content button {
        border-color: #3F7B5C;
        color: #3F7B5C;
    }

    /* =====================================================
       MOVIE / SERIES GRID
    ===================================================== */

    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .media-item {
        width: 100%;
        min-width: 0;
    }

    .media-item .info {
        padding: 5px 5px;
    }


    /* =====================================================
       MUSIC - STAGE
    ===================================================== */

    .stage {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        overflow: hidden;
    }


    /* =====================================================
       MUSIC - TRACKLIST CARD
    ===================================================== */

    .card {
        position: relative;
        z-index: 2;
        width: 69%;
        padding: 10px 10px 15px 32px;
        aspect-ratio: 1 / 0.92;
        overflow-y: auto;
        overflow-x: hidden;
        line-height: 1.6;
    }

    ol.tracklist li {
        column-gap: 20px;
        padding: 0;
    }

    ol.tracklist li.active {
        padding: 5px 8px 8px 2px;
    }

    .active-controls {
        gap: 5x;
    }

    .active-progress {
        gap: 5px;
    }


    /* =====================================================
       MUSIC - CD
    ===================================================== */

    .cd-wrap {
        left: 10rem;
    }

    .cd {
        width: 14.5rem;
        height: 14.5rem;
    }

    .cd-hole {
        width: 6rem;
        height: 6rem;
        outline: 10px double rgb(240, 211, 237);
        border: 20px solid rgb(240, 211, 237, 0.5);
    }

    /* =====================================================
       INDONESIA MUSIC
    ===================================================== */

    .indo-player-area {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 10px;
    }

    .indo-active-player {
        width: 55%;
        margin: 0 0 5px auto;
        max-width: none;
    }

    .indonesiasongs {
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: flex-end;
        gap: 5px;
        flex-wrap: wrap;
    }

    .bungkus {
        max-width: 100%;
        height: 3.15rem;
        padding: 4px;
        gap: 4px;
    }

    .indo-kiri img {
        height: 2.6rem;
        width: 2.6rem;
    }

    /* =====================================================
       BOOKSHELF
    ===================================================== */

    .bs-wrap {
        width: 100%;
        overflow: hidden;
    }

    .bs-container {
        width: 100%;
        gap: 15px;
    }

    .bs-shelf-outer {
        width: 100%;
        min-height: 250px;
        overflow: hidden;
        background-size: 100%;
    }

    .bs-viewport {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 15px 0 0 0;
        -webkit-overflow-scrolling: touch;
    }

    .bs-books-row {
        width: max-content;
    }

    .bs-arrow {
        width: 32px;
        height: 32px;
    }

    .bs-paper-tex {
        display: none;
    }

    /* =====================================================
       BOOK REVIEW
    ===================================================== */

    .bs-review {
        height: fit-content;
        width: 100%;
    }

    .bs-card {
        padding: 25px;
        gap: 20px;
    }

    .bs-card-review {
        line-height: 1.4;
    }

    .bs-review-empty {
        padding: 18px;
        font-size: 0.9rem;
    }

    .bs-card-judul {
        font-size: 1.5rem;
    }

}