
body {
    background-color: #121212;
    color: #f0f0f0;
    font-family: Georgia, serif;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 30px;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    position: relative;
    width: 260px;
    height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 10px #000;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.caption {
    margin-top: 8px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.caption .play {
    font-size: 0.85em;
    color: #aaa;
    font-style: italic;
}

.quote {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #ffdf80;
    padding: 10px;
    font-style: italic;
    font-size: 0.9em;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover .quote {
    opacity: 1;
}
