* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0c0e13;
            color: #e8eaed;
            line-height: 1.75;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #ffb347;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ff8c00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        header {
            background: linear-gradient(145deg, #141820, #1a1f2a);
            padding: 16px 0;
            border-bottom: 2px solid #ff8c00;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff8c00, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
        }
        .my-logo:hover {
            -webkit-text-fill-color: #ffb347;
            background: none;
            color: #ffb347;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #ff8c00;
            color: #ff8c00;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            color: #cfd8e3;
        }
        .nav-menu a:hover {
            border-bottom-color: #ff8c00;
            color: #ffb347;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.9rem;
            color: #9aa5b5;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #ffb347;
        }
        .breadcrumb span {
            margin: 0 4px;
        }
        main {
            padding: 28px 0 48px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(to right, #ff8c00, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 20px 0 12px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #ffb347;
            border-left: 6px solid #ff8c00;
            padding-left: 18px;
            margin: 40px 0 18px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.5rem;
            color: #f5c77e;
            margin: 32px 0 14px;
            font-weight: 600;
        }
        h4 {
            font-size: 1.2rem;
            color: #e0b36a;
            margin: 22px 0 10px;
            font-weight: 600;
        }
        p {
            margin-bottom: 18px;
            color: #d3dbe6;
        }
        .hero-img {
            margin: 28px 0 32px;
            border-radius: 16px;
            overflow: hidden;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.95rem;
            color: #aab5c5;
            padding: 12px 0 20px;
            border-bottom: 1px solid #2a3040;
            margin-bottom: 28px;
        }
        .meta-info i {
            margin-right: 6px;
            color: #ff8c00;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: #1a202e;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2d3548;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(255, 140, 0, 0.15);
            border-color: #ff8c00;
        }
        .card i {
            font-size: 2rem;
            color: #ff8c00;
            margin-bottom: 12px;
        }
        .stat-badge {
            background: #232b3e;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #ffb347;
            display: inline-block;
            margin: 6px 0;
        }
        .comment-section,
        .search-section,
        .score-section {
            background: #151b28;
            border-radius: 20px;
            padding: 28px 24px;
            margin: 32px 0;
            border: 1px solid #2d3548;
        }
        .comment-section h2,
        .search-section h2,
        .score-section h2 {
            border-left-color: #ffd700;
            margin-top: 0;
        }
        input,
        textarea,
        select {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid #35405a;
            background: #0e121e;
            color: #e8eaed;
            font-size: 1rem;
            margin-bottom: 16px;
            transition: border 0.2s;
        }
        input:focus,
        textarea:focus,
        select:focus {
            border-color: #ff8c00;
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: #ff8c00;
            color: #0c0e13;
            border: none;
            padding: 14px 34px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: #ffa33a;
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #ff8c00;
            color: #ff8c00;
        }
        .btn-outline:hover {
            background: #ff8c00;
            color: #0c0e13;
        }
        .friend-link {
            padding: 24px 0;
            margin-top: 40px;
            border-top: 1px solid #2a3040;
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            font-size: 0.95rem;
        }
        .friend-link a {
            color: #bcc8da;
        }
        .friend-link a:hover {
            color: #ffb347;
        }
        footer {
            padding: 32px 0 40px;
            border-top: 1px solid #2a3040;
            text-align: center;
            color: #8896a8;
            font-size: 0.9rem;
        }
        footer .copyright {
            margin-top: 12px;
            letter-spacing: 0.3px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 12px;
                padding: 18px 0 8px;
                border-top: 1px solid #2d3548;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 6px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .comment-section,
            .search-section,
            .score-section {
                padding: 18px 14px;
            }
        }
        .highlight {
            color: #ffd700;
            font-weight: 600;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #ff8c00, transparent);
            margin: 36px 0;
            opacity: 0.3;
        }
        .tag {
            display: inline-block;
            background: #1e273a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #bcc8da;
            margin: 2px 4px;
        }
        .star-rating {
            color: #ffb347;
            letter-spacing: 2px;
            font-size: 1.3rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .quote-block {
            background: #1a212f;
            border-left: 6px solid #ff8c00;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
            font-style: italic;
        }
        .quote-block strong {
            color: #ffb347;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #151b28;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #2a3040;
        }
        th {
            background: #1e273a;
            color: #ffb347;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
        @media (max-width: 600px) {
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 10px 10px;
            }
        }
