* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #F8F6F3;
    color: #1A1A1A;
    line-height: 1.6;
    padding: 2rem;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #E8E4DF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E8E4DF;
}
.header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}
.meta {
    color: #6B6560;
    font-size: 0.85rem;
}
.meta a {
    color: #2563EB;
    text-decoration: none;
}
.meta a:hover { text-decoration: underline; }
.thumbnail {
    width: 100%;
    border-radius: 12px;
    margin-top: 1rem;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.verdict {
    background: #FFFBEB;
    border-left: 4px solid #D97706;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    color: #1A1A1A;
}
.verdict.watch { background: #ECFDF5; border-left-color: #059669; }
.verdict.skip { background: #FEF2F2; border-left-color: #DC2626; }
.verdict.partial { background: #FFFBEB; border-left-color: #D97706; }
.verdict h2 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.verdict.watch h2 { color: #059669; }
.verdict.skip h2 { color: #DC2626; }
.verdict.partial h2 { color: #D97706; }
.verdict .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9C9590;
    margin-bottom: 0.3rem;
}
.verdict.watch .label { color: #047857; }
.verdict.skip .label { color: #991B1B; }
.verdict.partial .label { color: #92400E; }
.section {
    margin: 2rem 0;
}
.section h2 {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #E8E4DF;
}
.summary {
    font-size: 1.05rem;
    color: #6B6560;
    margin-bottom: 1.5rem;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #E8E4DF;
}
ul li:last-child { border-bottom: none; }
ul li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: #9C9590;
}
.tag {
    display: inline-block;
    background: #EFF6FF;
    color: #2563EB;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.4rem;
}
.structure-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}
.structure-table th,
.structure-table td {
    text-align: left;
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid #E8E4DF;
    font-size: 0.9rem;
}
.structure-table th {
    color: #9C9590;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.structure-table td:first-child {
    color: #2563EB;
    white-space: nowrap;
    width: 100px;
}
.structure-table tbody tr:nth-child(even) { background: #FAFAF9; }
.structure-table tbody tr:hover { background: #F5F3F0; }
.rating {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}
.rating-core { background: #ECFDF5; color: #059669; }
.rating-useful { background: #EFF6FF; color: #2563EB; }
.rating-skip { background: #FEF2F2; color: #DC2626; }
.rating-filler { background: #F0EEEB; color: #9C9590; }
.back-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #2563EB;
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
}
.back-link:hover {
    text-decoration: underline;
}
.footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #E8E4DF;
    color: #9C9590;
    font-size: 0.8rem;
}
.footer a { color: #2563EB; text-decoration: none; }

@media (max-width: 600px) {
    body { padding: 0.75rem; }
    .container { padding: 1.2rem; }
    .header h1 { font-size: 1.2rem; }
    .structure-table { display: block; overflow-x: auto; font-size: 0.8rem; }
}
