        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0d17;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1320px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0ede8;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.2rem 0 0.8rem;
            border-left: 6px solid #f5c542;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 0.8rem;
            border-bottom: 2px solid #2a2d3a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.3rem;
            color: #cdc8be;
        }
        p {
            margin-bottom: 1.1rem;
        }
        ul,
        ol {
            margin: 0.6rem 0 1.2rem 1.6rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        strong {
            color: #f5c542;
            font-weight: 600;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #3a3d4a, transparent);
            margin: 2rem 0;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #f5c542;
            color: #0b0d17;
            padding: 0.5rem 1.2rem;
            border-radius: 0 0 8px 8px;
            font-weight: 600;
            z-index: 1000;
            transition: top 0.25s ease;
        }
        .skip-link:focus {
            top: 0;
            text-decoration: none;
        }
        header {
            padding: 1rem 0 0.6rem;
            border-bottom: 1px solid #2a2d3a;
            margin-bottom: 1.2rem;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem 1.2rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f5c542, #e8a82e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 197, 66, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c542;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: initial;
            color: #9a9aae;
            font-weight: 400;
            letter-spacing: 0.3px;
            display: block;
            line-height: 1;
        }
        nav.nav-primary {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        nav.nav-primary a {
            padding: 0.4rem 0.9rem;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c8c5bc;
            transition: background 0.2s, color 0.2s;
        }
        nav.nav-primary a:hover,
        nav.nav-primary a:focus-visible {
            background: #2a2d3a;
            color: #f5c542;
            text-decoration: none;
        }
        nav.nav-primary a.active {
            background: #f5c542;
            color: #0b0d17;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: 2px solid #3a3d4a;
            border-radius: 8px;
            color: #e8e6e3;
            font-size: 1.6rem;
            padding: 0.3rem 0.7rem;
            cursor: pointer;
            transition: border-color 0.2s;
            line-height: 1;
        }
        .hamburger-btn:hover {
            border-color: #f5c542;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.3rem 0.6rem;
            padding: 0.6rem 0;
            margin: 0;
            font-size: 0.85rem;
            color: #9a9aae;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #5a5d6a;
        }
        .breadcrumb a {
            color: #b0adb0;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #e8e6e3;
            font-weight: 500;
        }
        main {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem 2.5rem;
        }
        @media (min-width: 1024px) {
            main {
                grid-template-columns: 1fr 300px;
            }
            main>article {
                grid-column: 1;
            }
            main>aside {
                grid-column: 2;
            }
        }
        article {
            background: #12141f;
            border-radius: 20px;
            padding: 1.8rem 1.6rem 2.4rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            font-size: 0.88rem;
            color: #9a9aae;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #2a2d3a;
        }
        .article-meta i {
            margin-right: 0.3rem;
            color: #f5c542;
        }
        .last-updated {
            font-weight: 500;
            color: #cdc8be;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #12141f;
            border-radius: 16px;
            padding: 1.2rem 1.2rem 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            border-left: 4px solid #f5c542;
            padding-left: 0.7rem;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-card li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1e2030;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            display: flex;
            align-items: baseline;
            gap: 0.4rem;
            font-size: 0.92rem;
        }
        .sidebar-card a::before {
            content: "🦇";
            font-size: 0.75rem;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
            margin: 0.8rem 0 0.2rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.6rem 1rem;
            border-radius: 40px;
            border: 1px solid #2a2d3a;
            background: #1a1c2a;
            color: #e8e6e3;
            font-size: 0.92rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-form button {
            background: #f5c542;
            border: none;
            border-radius: 40px;
            padding: 0.5rem 1.2rem;
            color: #0b0d17;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .user-feedback {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.4rem;
            padding-top: 1.4rem;
            border-top: 2px solid #2a2d3a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }
        @media (min-width: 600px) {
            .feedback-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .feedback-card {
            background: #1a1c2a;
            border-radius: 14px;
            padding: 1.2rem 1.2rem 1.5rem;
        }
        .feedback-card h4 {
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f0ede8;
        }
        .feedback-card label {
            display: block;
            font-size: 0.88rem;
            color: #b0adb0;
            margin-bottom: 0.25rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 0.55rem 0.9rem;
            border-radius: 10px;
            border: 1px solid #2a2d3a;
            background: #0f111c;
            color: #e8e6e3;
            font-size: 0.92rem;
            outline: none;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f5c542;
        }
        .feedback-card textarea {
            min-height: 70px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #f5c542;
            border: none;
            border-radius: 40px;
            padding: 0.55rem 1.6rem;
            color: #0b0d17;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.6rem;
            font-size: 0.92rem;
            width: 100%;
        }
        .feedback-card .btn-submit:hover {
            background: #ffdd77;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.3rem 0 0.6rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a3d4a;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .movie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0 1.8rem;
            font-size: 0.92rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .movie-table th {
            background: #1e2030;
            color: #f5c542;
            padding: 0.7rem 0.8rem;
            text-align: left;
            font-weight: 600;
        }
        .movie-table td {
            padding: 0.6rem 0.8rem;
            border-bottom: 1px solid #1e2030;
            background: #12141f;
        }
        .movie-table tr:hover td {
            background: #1a1c2a;
        }
        .movie-table .highlight {
            color: #f5c542;
            font-weight: 500;
        }
        .featured-image {
            margin: 1.6rem 0 1.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6);
            background: #1a1c2a;
            padding: 0.4rem;
        }
        .featured-image img {
            width: 100%;
            border-radius: 12px;
            display: block;
        }
        .featured-image figcaption {
            padding: 0.6rem 0.8rem 0.4rem;
            font-size: 0.85rem;
            color: #9a9aae;
            text-align: center;
            font-style: italic;
        }
        footer {
            margin-top: 2.4rem;
            padding: 1.8rem 0 1.2rem;
            border-top: 1px solid #2a2d3a;
            font-size: 0.88rem;
            color: #9a9aae;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.2rem 2rem;
        }
        @media (min-width: 600px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        .footer-grid h4 {
            color: #e8e6e3;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            margin: 0.6rem 0 0.2rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1e2030;
            margin-top: 0.8rem;
            font-size: 0.82rem;
        }
        .copyright strong {
            color: #e8e6e3;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                padding-left: 0.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            body {
                padding: 0 0.6rem;
            }
            article {
                padding: 1.2rem 0.8rem 1.6rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger-btn {
                display: inline-block;
            }
            nav.nav-primary {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1c2a;
                border-radius: 16px;
                padding: 0.6rem 0.2rem;
                margin-top: 0.4rem;
            }
            #nav-toggle:checked~.hamburger-btn+.nav-primary {
                display: flex;
            }
            #nav-toggle:checked~.hamburger-btn {
                border-color: #f5c542;
            }
            nav.nav-primary a {
                padding: 0.5rem 1.2rem;
                border-radius: 8px;
                width: 100%;
            }
            .movie-table {
                font-size: 0.78rem;
            }
            .movie-table th,
            .movie-table td {
                padding: 0.4rem 0.5rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            aside {
                order: 2;
            }
            main>article {
                order: 1;
            }
        }
        @media (min-width: 769px) {
            .hamburger-btn {
                display: none !important;
            }
            #nav-toggle {
                display: none !important;
            }
            nav.nav-primary {
                display: flex !important;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .text-accent {
            color: #f5c542;
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0d17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2d3a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3d4a;
        }
        ::selection {
            background: #f5c542;
            color: #0b0d17;
        }
        @media print {
            body {
                background: #fff;
                color: #222;
            }
            .sidebar-card,
            .feedback-card,
            .search-form {
                break-inside: avoid;
            }
            .hamburger-btn {
                display: none !important;
            }
            nav.nav-primary {
                display: flex !important;
            }
        }
