body {
    background-color: #b0f7f1;
    background-image: url('images/bg4.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #3c2f2f;
    font-family: 'VT323', monospace;
    margin: 0;
    padding: 10px;
    line-height: 1.4;
    font-size: 18px;
    position: relative;
}

/* Cluttered Overlays for retro effect */
.sparkle-overlay,
.sticker-overlay,
.glitter-overlay,
.heart-overlay,
.star-overlay {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
}

.sparkle-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/sparkles.png');
    opacity: 0.2;
}

.sticker-overlay {
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    background-image: url('images/sticker2.png');
    transform: rotate(-15deg);
    opacity: 0.8;
}

.glitter-overlay {
    top: 25%;
    left: 5%;
    width: 80px;
    height: 80px;
    background-image: url('images/glitter.gif');
}

.heart-overlay {
    bottom: 20%;
    left: 80%;
    width: 90px;
    height: 90px;
    background-image: url('images/heart.gif');
}

.star-overlay {
    top: 10%;
    right: 10%;
    width: 70px;
    height: 70px;
    background-image: url('images/star.gif');
}

.main-box {
    border: 2px solid #ffb6c1;
    padding: 10px;
    background-color: rgba(255, 240, 245, 0.8);
    max-width: 750px;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.2);
    position: relative;
    overflow: hidden;
}

.main-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/old-paper.png');
    opacity: 0.08;
    pointer-events: none;
}

.banner {
    width: 100%;
    margin: 0 auto 10px;
    padding: 0;
    overflow: hidden;
}

.banner-gif {
    width: 100%;
    height: auto;
    max-height: 60px;
    display: block;
    object-fit: cover;
}

.columns {
    display: flex;
    gap: 10px;
}

.left-column {
    flex: 1;
    min-width: 150px;
}

.middle-column {
    flex: 2;
}

.right-column {
    flex: 1;
    min-width: 150px;
}

.box {
    background-color: rgba(236,254,250,0.8);
    border: 1px dashed #ffb6c1;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.nav-box {
    padding: 8px;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nav-button {
    color: #3c2f2f;
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid #ffb6c1;
    border-radius: 12px;
    background-color: rgba(255, 182, 193, 0.3);
    display: block;
    text-align: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.nav-button:hover {
    background-color: rgba(255, 182, 193, 0.5);
    transform: translateX(3px);
}

.movie-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.movie-list li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #ffb6c1;
}

.box-decoration {
    position: absolute;
    opacity: 0.3;
    z-index: 0;
}

.box-decoration.right {
    right: 5px;
    top: 5px;
}

h2 {
    color: #ff69b4;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 8px;
    position: relative;
}

h3 {
    color: #3c2f2f;
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: bold;
}

.poster-scroll {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin: 0 -10px;
}

.poster-row {
    display: inline-flex;
    gap: 15px;
    padding: 0 10px;
    flex-wrap: nowrap;
}

.poster-item {
    display: inline-block;
    text-align: center;
    white-space: normal;
    flex: 0 0 auto;
}

.film-gif, .barbie-gif {
    width: 70px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ffb6c1;
}

.poster-item p {
    margin-top: 5px;
    font-size: 16px;
    max-width: 120px;
    color: #3c2f2f;
}

.review-box {
    height: 300px;
    display: flex;
    flex-direction: column;
}

.reviews-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.review {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ffb6c1;
}

.divider {
    height: 1px;
    background-color: #ffb6c1;
    margin: 10px 0;
    opacity: 0.5;
}

.quote {
    font-style: italic;
    color: #3c2f2f;
    margin: 0;
    font-size: 16px;
}

.quote-decoration {
    position: absolute;
    right: 5px;
    top: 5px;
    opacity: 0.5;
}

.corner-gif {
    position: absolute;
    width: 30px;
    height: auto;
    opacity: 0.7;
}

.bottom-left { bottom: 3px; left: 3px; }
.bottom-right { bottom: 3px; right: 3px; }
.top-right { top: 3px; right: 3px; }

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 182, 193, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 182, 193, 0.4);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 182, 193, 0.6);
}

@media (max-width: 768px) {
    .columns {
        flex-direction: column;
    }

    .left-column, .middle-column, .right-column {
        flex: 1;
    }

    .film-gif, .barbie-gif {
        width: 100px;
        height: 150px;
    }
}

