/* Article specific styles */
.article-main {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-header {
    text-align: center;
    margin-bottom: 6rem;
}

.decade-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--accent-color);
    border-radius: 100px;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.article-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -1px;
}

.article-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.drama-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.drama-item {
    display: block;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    scroll-margin-top: 120px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.drama-image {
    display: none;
}

.drama-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.drama-item:hover .drama-image img {
    transform: scale(1.05);
}

.drama-info {
    flex: 1;
}

.drama-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.drama-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.drama-item h3 span {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.cast-list {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    background: rgba(37, 99, 235, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.drama-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Merch & Music Sections */
.music-section, .merch-section {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.music-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
}

/* Related Items (Subtle Affiliate) */
.related-items {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.related-items h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subtle-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-merch {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: var(--transition);
    background: #fff;
    color: var(--text-primary) !important;
    border: 1px solid #cbd5e1;
}

.btn-merch:hover {
    background: var(--bg-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

/* Specific colors only on icons or small borders if needed, but let's keep it neutral */
.btn-amazon::before { content: 'A'; font-weight: 900; color: #ff9900; margin-right: 4px; }
.btn-rakuten::before { content: 'R'; font-weight: 900; color: #bf0000; margin-right: 4px; }

/* Affiliate VOD Section (Moderate) */
.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 6rem;
}

.glass-panel h2 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.vod-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vod-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    flex: 1;
    max-width: 350px;
    text-align: left;
}

.vod-card h4 { font-size: 0.8rem; color: var(--accent-color); margin-bottom: 0.5rem; }
.vod-card .vod-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 1rem; }
.vod-card .vod-features { font-size: 0.85rem; margin-bottom: 1.5rem; padding-left: 1.2rem; }
.btn-affiliate { font-size: 0.9rem; padding: 0.8rem; border-radius: 12px; }

@media (max-width: 900px) {
    .drama-item {
        padding: 1.5rem;
    }
    .merch-links {
        grid-template-columns: 1fr;
    }
}

/* Recirculation (Other Decades) */
.decade-nav-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color) !important;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1) !important;
    background: #fff !important;
}

.decade-nav-card h3 {
    transition: var(--transition);
}

.decade-nav-card:hover h3 {
    color: var(--accent-color);
}

/* Quick Navigation */
.quick-nav {
    margin: 3rem auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    max-width: 100%;
}

.quick-nav-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-align: center;
}

.quick-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.quick-nav-list li a {
    display: block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.quick-nav-list li a:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}
