body {
    margin: 0;
    padding: 0;
    /* YOUR PHOTO BACKGROUND */
    background: url('https://i.pinimg.com/736x/d8/74/04/d87404805d6e5c6dca813082ef7c2975.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Courier New', monospace;
}

.scrapbook-container {
    min-height: 100vh;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 40px;
    border-radius: 50px;
    margin-bottom: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 80px;
    width: 90%;
    max-width: 1400px;
}

/* THE STRIP */
.photo-strip {
    background: white;
    padding: 15px;
    display: flex;
    flex-direction: row; /* Horizontal strip */
    gap: 10px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s ease;
}

/* Random rotation for that "taped" look */
.photo-strip:nth-child(odd) { transform: rotate(-1deg); }
.photo-strip:nth-child(even) { transform: rotate(1.5deg); }

/* THE TAPE EFFECT */
.photo-strip::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 40%;
    width: 80px;
    height: 30px;
    background: rgba(180, 231, 184, 0.5); /* Mint Tape */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transform: rotate(2deg);
    z-index: 10;
}

.movie-frame {
    width: 120px;
    height: 180px; /* 4x6 feel but vertical within horizontal strip */
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.movie-frame img {
    width: 110px;
    height: 80px;
    object-fit: cover;
    margin-top: 5px;
    filter: sepia(0.2);
}

.movie-text {
    padding: 10px 5px;
    text-align: center;
}

.movie-text h3 {
    font-size: 0.75rem;
    margin: 5px 0;
    cursor: pointer;
    color: #333;
    text-decoration: underline;
}

.movie-text span {
    font-size: 0.6rem;
    display: block;
    color: #666;
}

/* REVIEW POPUP */
.review-overlay {
    display: none;
    font-size: 0.7rem;
    background: #fffaf0;
    border: 1px dashed #ccc;
    padding: 5px;
    margin-top: 5px;
}

.active .review-overlay {
    display: block;
}