body { font-family: sans-serif; background: #1a1a1a; color: #eee; margin: 0; padding: 0; }

.container { max-width: 800px; margin: 0 auto; padding: 15px; }

a { text-decoration: none; color: inherit; }



/* Header */

header { background: #b71c1c; padding: 20px 0; text-align: center; margin-bottom: 20px;}

header h1 { margin: 0; color: #fff; text-transform: uppercase; }

header span { color: #ffeb3b; }



/* Grid */

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; }

.card { background: #333; border-radius: 8px; overflow: hidden; transition: transform 0.2s; }

.card:hover { transform: translateY(-3px); }

.card img { width: 100%; height: 200px; object-fit: cover; }

.card-content { padding: 10px; }

.card h2 { font-size: 1.1em; margin: 5px 0; color: #ffeb3b; }

.tagline { font-size: 0.8em; color: #ccc; }

.btn { display: block; background: #444; text-align: center; padding: 5px; margin-top: 10px; font-size: 0.8em; border-radius: 4px; }



/* Model Page */

.review-box { background: #2a2a2a; padding: 20px; border-radius: 8px; }

.main-img { width: 100%; max-width: 400px; display: block; margin: 0 auto 20px; border-radius: 8px; }

.text-content { line-height: 1.6; color: #ddd; margin-bottom: 30px; }

.cta-box { background: #222; border: 1px solid #ffeb3b; padding: 20px; text-align: center; border-radius: 8px; }

.btn-large { display: inline-block; background: #d32f2f; color: white; padding: 15px 30px; font-weight: bold; font-size: 1.2em; border-radius: 5px; margin-top: 10px; }

.btn-large:hover { background: #b71c1c; }

/* --- HOVER EFFECTS --- */

/* The container (the Link) needs to hold the overlay */
.img-hover-wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

/* The Overlay (Hidden by default) */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark tint */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show Overlay on Hover */
.img-hover-wrap:hover .hover-overlay {
    opacity: 1;
}

/* The Button inside the overlay */
.play-button {
    background: #d32f2f;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border: 2px solid white;
}

/* Pulse Animation for the button */
.img-hover-wrap:hover .play-button {
    transform: scale(1.1);
    transition: transform 0.2s;
}