body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background: #111;
    color: #fff;
}

/* --- HERO (大きく・映画風) --- */
.hero {
    position: relative;
    width: 100%;
    height: 75vh; /* より広く見せる */
    overflow: hidden;
    background: #000;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 横長でも全体を見せたい */
    object-position: center;
    transition: transform 0.7s ease;
}
.hero.scrolled img {
    transform: scale(1.08); /* 控えめズーム */
}

/* タイトル（Netflix風） */
.title-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    box-sizing: border-box;
}
.title {
    font-size: 2rem;
    font-weight: 800; /* SNS系＋映画広告系 */
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.subtitle {
    margin-top: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

/* --- 本文 --- */
.content {
    padding: 20px;
    background: #111;
}
.meta {
    margin-bottom: 15px;
    color: #aaa;
    font-size: 1.5rem;
}
a.source-link {
    color: #4da3ff;
    text-decoration: none;
    font-size: 1.5rem;
    display: inline-block;
    line-height: 1.6;
}
.ddtl a {
    color: #aaa;
    font-size: 1.5rem;
    text-decoration: underline;
}

/* --- 2. Section container --- */
.section {
    padding: 20px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* --- 3. Card list --- */
.card-list {
    display: grid;
    gap: 20px;
}

.card {
    position: relative;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease;
}

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

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

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.card-desc {
    font-size: 14px;
    opacity: 0.75;
}

/* Rank badge */
.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,30,30,0.9);
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 6px;
}

/* --- Footer Links --- */
.footer-links {
    max-width: 800px;
    margin: 30px auto 30px;
    padding: 0 20px;

    display: grid;
    gap: 18px;
}

.cine-link {
    display: block;
    text-align: center;
    padding: 14px 22px;

    background: #000;
    border: 2px solid #fff;
    color: #fff;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    border-radius: 6px;
    transition: all 0.28s ease;
}

.cine-link:hover {
    background: #111;
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

@media (min-width: 600px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}
