        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e1a;
            color: #e4e9f0;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #6ec8ff;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffb347;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
            margin: 0.8rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #f0f4ff;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #ff8c42;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #ff8c42;
            padding-left: 0.9rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #ffb347;
        }
        h4 {
            font-size: 1.2rem;
            color: #b8d0ff;
        }
        p {
            margin-bottom: 1.2rem;
            word-spacing: 0.04rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #111729;
            padding: 0.6rem 0;
            border-bottom: 2px solid #2a3a6a;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff8c42, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 12px rgba(255, 140, 66, 0.3);
        }
        .my-logo small {
            font-size: 0.8rem;
            color: #7a8bbf;
            -webkit-text-fill-color: #7a8bbf;
            background: none;
            letter-spacing: 0.5px;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 0.9rem;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c6d3f0;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: #2a3a6a;
            color: #ffb347;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 1.8rem;
            color: #e4e9f0;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2a4a;
        }
        .breadcrumb {
            background: #151e33;
            padding: 0.6rem 0;
            border-bottom: 1px solid #1f2a4a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6a7caa;
        }
        .breadcrumb a {
            color: #8aa3dd;
        }
        .breadcrumb .current {
            color: #ffb347;
        }
        section {
            padding: 2.2rem 0;
        }
        .section-light {
            background: #111729;
            border-radius: 20px;
            padding: 2rem 1.8rem;
            margin: 2rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        .section-dark {
            background: #0d1224;
            border-radius: 20px;
            padding: 2rem 1.8rem;
            margin: 2rem 0;
            border: 1px solid #1f2a4a;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            background: #ff8c42;
            color: #0b0e1a;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        .btn:hover {
            background: #ffa75e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
            text-decoration: none;
            color: #0b0e1a;
        }
        .btn-outline {
            background: transparent;
            color: #ff8c42;
            border: 2px solid #ff8c42;
        }
        .btn-outline:hover {
            background: #ff8c42;
            color: #0b0e1a;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #c6d3f0;
        }
        .form-control {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 2px solid #1f2a4a;
            background: #0b0e1a;
            color: #e4e9f0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #ff8c42;
        }
        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: #3a4a7a;
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ffb347;
        }
        .rating-stars i {
            transition: color 0.2s;
        }
        .comment-card,
        .score-card {
            background: #0d1224;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid #1f2a4a;
        }
        .comment-card .author {
            font-weight: 700;
            color: #ffb347;
        }
        .comment-card .date {
            font-size: 0.8rem;
            color: #6a7caa;
        }
        .score-display {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .score-value {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffb347;
        }
        .score-stars {
            color: #ffb347;
            font-size: 1.4rem;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem;
            margin: 1.2rem 0;
        }
        .link-grid a {
            display: block;
            padding: 0.6rem 1rem;
            background: #0d1224;
            border-radius: 10px;
            border: 1px solid #1f2a4a;
            font-size: 0.92rem;
            transition: all 0.25s;
        }
        .link-grid a:hover {
            border-color: #ff8c42;
            background: #151e33;
            text-decoration: none;
        }
        .img-wrapper {
            margin: 1.6rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #151e33;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .img-wrapper img {
            width: 100%;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #7a8bbf;
            text-align: center;
            padding: 0.6rem;
            font-style: italic;
        }
        footer {
            background: #0a0e1a;
            border-top: 2px solid #1f2a4a;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
        }
        footer .copy {
            text-align: center;
            color: #5a6a8a;
            font-size: 0.9rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1a2540;
            padding-top: 1.2rem;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: #111729;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #111729;
                padding: 0.8rem 0;
                border-top: 1px solid #1f2a4a;
                margin-top: 0.6rem;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
                white-space: normal;
            }
            .section-light,
            .section-dark {
                padding: 1.2rem 1rem;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .score-value {
                font-size: 2rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            header {
                padding: 0.4rem 0;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .highlight {
            color: #ffb347;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #ff8c42;
            color: #0b0e1a;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.7rem;
            border-radius: 40px;
            letter-spacing: 0.3px;
        }
        .last-update {
            color: #7a8bbf;
            font-size: 0.85rem;
            border-bottom: 1px dashed #2a3a6a;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0d1224;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1a2540;
        }
        th {
            background: #1f2a4a;
            color: #ffb347;
            font-weight: 600;
        }
        tr:hover td {
            background: #151e33;
        }
