        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0d11;
            color: #e2e6ec;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a { color: #f5c542; text-decoration: none; transition: color 0.25s ease; }
        a:hover { color: #ffde7a; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
        ul, ol { padding-left: 1.6rem; margin-bottom: 1.2rem; }
        li { margin-bottom: 0.4rem; }
        h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; color: #f0f4fc; margin-bottom: 0.6rem; }
        h1 { font-size: 2.4rem; margin-top: 0.8rem; letter-spacing: -0.02em; }
        h2 { font-size: 1.9rem; margin-top: 2.8rem; border-left: 5px solid #f5c542; padding-left: 1rem; }
        h3 { font-size: 1.5rem; margin-top: 2rem; color: #ffde7a; }
        h4 { font-size: 1.2rem; margin-top: 1.4rem; color: #cfd8e8; }
        p { margin-bottom: 1.2rem; font-size: 1.05rem; }
        .lead { font-size: 1.2rem; font-weight: 300; color: #c8d0dc; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: #14181f;
            border-bottom: 2px solid #2a2f3a;
            padding: 0.8rem 0;
            position: sticky; top: 0; z-index: 100;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.7);
        }
        .header-inner {
            display: flex; align-items: center; justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem; font-weight: 900; letter-spacing: 4px;
            background: linear-gradient(135deg, #f5c542, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            text-shadow: 0 0 30px rgba(245,197,66,0.15);
            transition: transform 0.3s ease;
        }
        .my-logo:hover { transform: scale(1.02); text-decoration: none; }
        .nav-menu {
            display: flex; gap: 1.8rem; align-items: center;
            transition: all 0.35s ease;
        }
        .nav-menu a {
            font-weight: 600; font-size: 0.95rem; color: #c8d0dc;
            padding: 0.4rem 0; border-bottom: 2px solid transparent;
            transition: 0.25s ease;
        }
        .nav-menu a:hover { color: #f5c542; border-bottom-color: #f5c542; text-decoration: none; }
        .hamburger { display: none; font-size: 1.8rem; color: #f0f4fc; cursor: pointer; background: none; border: none; padding: 0.2rem 0.6rem; }
        .breadcrumb {
            background: #1a1f28;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            margin: 1rem 0 1.6rem;
            font-size: 0.9rem;
            display: flex; flex-wrap: wrap; gap: 0.5rem;
        }
        .breadcrumb i { margin: 0 0.3rem; color: #6b7a8f; }
        .breadcrumb a { color: #aab4c6; }
        .breadcrumb a:hover { color: #f5c542; }
        .breadcrumb .current { color: #f5c542; font-weight: 600; }
        .search-wrap {
            background: #1a1f28; border-radius: 40px; padding: 0.3rem 0.3rem 0.3rem 1.2rem;
            display: flex; align-items: center; max-width: 480px; margin: 1.6rem 0 2rem;
            border: 1px solid #2f3642;
        }
        .search-wrap input {
            flex: 1; background: transparent; border: none; color: #e2e6ec; font-size: 1rem;
            padding: 0.6rem 0; outline: none;
        }
        .search-wrap input::placeholder { color: #6b7a8f; }
        .search-wrap button {
            background: #f5c542; color: #0b0d11; border: none; border-radius: 40px;
            padding: 0.6rem 1.6rem; font-weight: 700; cursor: pointer; font-size: 0.95rem;
            transition: 0.25s ease;
        }
        .search-wrap button:hover { background: #ffde7a; transform: scale(1.02); }
        .card {
            background: #161c26; border-radius: 16px; padding: 1.8rem 2rem;
            margin-bottom: 2rem; border: 1px solid #242b36;
            box-shadow: 0 8px 28px rgba(0,0,0,0.4);
        }
        .card-soft { background: #131921; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.8rem; }
        .hero-img {
            width: 100%; border-radius: 16px; margin: 1.8rem 0;
            box-shadow: 0 12px 40px rgba(0,0,0,0.6);
        }
        .comment-box, .score-box {
            background: #161c26; border-radius: 16px; padding: 1.8rem 2rem;
            border: 1px solid #242b36; margin-top: 2rem;
        }
        .comment-box textarea, .score-box select, .score-box input {
            width: 100%; background: #0f141e; border: 1px solid #2a3140;
            color: #e2e6ec; padding: 0.8rem 1rem; border-radius: 10px;
            font-size: 1rem; margin-bottom: 1rem; resize: vertical;
        }
        .comment-box textarea:focus, .score-box select:focus, .score-box input:focus {
            outline: none; border-color: #f5c542;
        }
        .btn {
            background: #f5c542; color: #0b0d11; border: none; border-radius: 40px;
            padding: 0.7rem 2rem; font-weight: 700; font-size: 1rem; cursor: pointer;
            transition: 0.25s ease; display: inline-flex; align-items: center; gap: 0.5rem;
        }
        .btn:hover { background: #ffde7a; transform: translateY(-2px); }
        .btn-outline { background: transparent; border: 2px solid #f5c542; color: #f5c542; }
        .btn-outline:hover { background: #f5c542; color: #0b0d11; }
        .link-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem; margin: 1.2rem 0;
        }
        .link-grid a {
            background: #1a212c; padding: 0.6rem 1rem; border-radius: 30px;
            font-size: 0.9rem; border: 1px solid #2a3240; transition: 0.25s ease;
            display: inline-flex; align-items: center; gap: 0.5rem;
        }
        .link-grid a:hover { border-color: #f5c542; background: #212a38; text-decoration: none; }
        .site-footer {
            background: #0e121a; border-top: 2px solid #1f2630;
            padding: 2.8rem 0 1.8rem; margin-top: 3rem;
        }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
        .site-footer friend-link { display: block; margin: 0.4rem 0; }
        .site-footer friend-link a { color: #aab4c6; font-size: 0.95rem; }
        .site-footer friend-link a:hover { color: #f5c542; }
        .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #1f2630; font-size: 0.9rem; color: #6b7a8f; }
        @media (max-width: 992px) {
            .grid-2 { grid-template-columns: 1fr; }
            .grid-3 { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .header-inner { flex-wrap: wrap; }
            .nav-menu {
                display: none; flex-direction: column; width: 100%;
                background: #14181f; padding: 1rem 0; gap: 0.8rem;
                border-top: 1px solid #2a2f3a; margin-top: 0.6rem;
            }
            .nav-menu.open { display: flex; }
            .hamburger { display: block; }
            .grid-3 { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .card { padding: 1.2rem 1.2rem; }
            .search-wrap { max-width: 100%; }
            .comment-box, .score-box { padding: 1.2rem; }
        }
        @media (max-width: 480px) {
            html { font-size: 15px; }
            .my-logo { font-size: 1.6rem; }
            .breadcrumb { font-size: 0.8rem; }
        }
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #0b0d11; }
        ::-webkit-scrollbar-thumb { background: #2a3240; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: #3f4a5c; }
        .badge { display: inline-block; background: #f5c542; color: #0b0d11; padding: 0.2rem 1rem; border-radius: 30px; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.5px; }
        .divider { border: none; height: 1px; background: linear-gradient(90deg, transparent, #2a3240, transparent); margin: 2rem 0; }
        .highlight { background: linear-gradient(120deg, rgba(245,197,66,0.15), rgba(245,197,66,0.05)); padding: 0.2rem 0.6rem; border-radius: 6px; }
        .emoji-big { font-size: 1.6rem; }
        .table-wrap { overflow-x: auto; }
        table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; }
        th, td { padding: 0.8rem 1rem; text-align: left; border-bottom: 1px solid #242b36; }
        th { background: #1a212c; color: #f5c542; font-weight: 600; }
        tr:hover { background: #1a212c; }
        .last-update { font-size: 0.85rem; color: #6b7a8f; text-align: right; margin-top: 1.6rem; border-top: 1px solid #242b36; padding-top: 1rem; }
