/* ========================================
   SEO記事ページ専用スタイルシート
   18禁打！！ - 女優別レビュー＆タイピングページ
   ======================================== */

/* === CSS Variables === */
:root {
    --primary: #d4637a;
    --primary-dark: #b84d63;
    --accent: #e8899e;
    --bg-dark: #111118;
    --bg-card: #1a1a24;
    --bg-card-hover: #222230;
    --text-primary: #d8d8e2;
    --text-secondary: #9a9ab4;
    --text-muted: #6a6a88;
    --border: #2c2c3e;
    --gold: #e8c547;
    --gradient-hero: linear-gradient(135deg, #111118 0%, #1a1422 50%, #141320 100%);
    --shadow-glow: 0 0 25px rgba(212, 99, 122, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --font-main: 'Noto Sans JP', sans-serif;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary);
}

/* === Site Header === */
.site-header {
    background: rgba(17, 17, 24, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary) !important;
    letter-spacing: 0.05em;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.site-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--text-primary);
}

/* === Breadcrumb === */
.breadcrumb {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb [aria-current="page"] {
    color: var(--text-primary);
    font-weight: 600;
}

/* === H1 === */
.article-h1 {
    padding: 48px 0 32px;
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.h1-actress {
    color: var(--primary);
    font-weight: 900;
    font-size: 2.4rem;
}

.h1-sub {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 400;
}

/* === Intro Section === */
.intro-section {
    padding: 32px 0 48px;
}

.actress-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.profile-image img {
    border-radius: var(--radius-lg);
    border: 3px solid var(--border);
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.03);
}

.intro-lead {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.profile-stats {
    display: flex;
    gap: 24px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

/* === Review Section === */
.review-section {
    padding: 48px 0;
}

.review-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.work-review-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    padding: 28px;
    margin-bottom: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.work-review-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.work-image img {
    border-radius: 8px;
    aspect-ratio: auto;
    object-fit: contain;
    width: 100%;
}

.work-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
    color: var(--text-primary);
}

.work-review {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.work-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rating-stars {
    font-size: 1.2rem;
}

.rating-value {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
}

/* === Affiliate Notice (規約遵守) === */
.affiliate-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 16px;
    background: rgba(212, 99, 122, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(212, 99, 122, 0.15);
}

.pr-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.affiliate-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.affiliate-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.ad-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* === Game Section === */
.game-section {
    padding: 48px 0;
}

.game-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.game-teaser {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
}

.game-lock-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: var(--gradient-hero);
    text-align: center;
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.lock-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
}

.unlock-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.05em;
}

.unlock-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 99, 122, 0.3);
}

.game-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* === Related Section === */
.related-section {
    padding: 48px 0;
}

.related-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.2s, border-color 0.2s;
    text-align: center;
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.related-card img {
    width: 100px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
}

.related-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* === Footer === */
.site-footer {
    margin-top: 60px;
    padding: 40px 0;
    background: #0e0e15;
    border-top: 1px solid var(--border);
}

.footer-disclaimer {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(212, 99, 122, 0.18);
    margin-bottom: 24px;
}

.disclaimer-main {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.8;
}

.disclaimer-affiliate {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.disclaimer-age {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 0.82rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-copyright {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* === Responsive === */
@media (max-width: 768px) {
    .article-h1 {
        font-size: 1.4rem;
        padding: 24px 0 16px;
    }

    .h1-actress {
        font-size: 1.6rem;
    }

    .actress-profile {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-image {
        display: flex;
        justify-content: center;
    }

    .profile-image img {
        width: 200px;
    }

    .profile-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .work-review-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }

    .work-image img {
        aspect-ratio: 16/9;
        width: 100%;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-lock-overlay {
        padding: 40px 20px;
    }

    .site-nav ul {
        gap: 16px;
    }
}