/* Cinematic Theme Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #c9a55c;
    /* Gold/Bronze */
    --accent-hover: #e0c078;
    --card-bg: #141414;
    --overlay-color: rgba(0, 0, 0, 0.6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
.cinematic-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    padding: 2rem;
}

/* Background image placeholder - subtle noise or landscape */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/retro_store_bg.jpg');
    /* Reuse existing asset as placeholder */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
    filter: grayscale(100%) contrast(120%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: rgba(201, 165, 92, 0.1);
    color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 0 20px rgba(201, 165, 92, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-color) 0%, transparent 100%);
    opacity: 0.3;
}

/* Content Grid Section */
.content-section {
    padding: 6rem 2rem;
    background-color: #080808;
    min-height: 100vh;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card:hover .card-image-container::after {
    opacity: 1;
}

.card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--accent-color);
    color: #000;
}

.card-image-container {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    position: relative;
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.card:hover .card-image {
    opacity: 1;
}

/* Glow effect on hover */
.card-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 165, 92, 0.3);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: inset 0 0 20px rgba(201, 165, 92, 0.1);
    pointer-events: none;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.card-info {
    padding: 1.2rem 0;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-meta {
    font-size: 0.7rem;
    color: #666;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.05em;
}

/* === Footer === */
.site-footer {
    margin-top: 60px;
    padding: 40px 0;
    background: #0e0e15;
    border-top: 1px solid #2c2c3e;
    font-family: 'Noto Sans JP', sans-serif;
}

.site-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.footer-disclaimer {
    padding: 24px;
    background: #1a1a24;
    border-radius: 12px;
    border: 1px solid rgba(212, 99, 122, 0.18);
    margin-bottom: 24px;
}

.disclaimer-main {
    font-size: 0.9rem;
    color: #d8d8e2;
    margin-bottom: 12px;
    line-height: 1.8;
}

.disclaimer-affiliate {
    font-size: 0.82rem;
    color: #9a9ab4;
    margin-bottom: 12px;
    line-height: 1.7;
}

.disclaimer-age {
    font-size: 0.88rem;
    color: #d4637a;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 0.82rem;
}

.footer-links a {
    color: #9a9ab4;
}

.footer-copyright {
    font-size: 0.78rem;
    color: #6a6a88;
}

/* Modal for viewing (Dummy) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #111;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid #333;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-video-placeholder {
    width: 100%;
    padding-top: 56.25%;
    background-color: #000;
    position: relative;
}

.modal-video-placeholder::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #333;
}

.modal-details {
    padding: 2rem;
}

.modal-title {
    color: #fff;
    margin-bottom: 1rem;
}

.modal-desc {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}