* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0d17;
            color: #e8eaf0;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f0c75e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffda7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #11131f, #1a1d2e);
            border-bottom: 2px solid #f0c75e33;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c75e, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #f0c75e22;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 14px;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            background: none;
            display: block;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #f0c75e55;
            color: #f0c75e;
            font-size: 24px;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
        }
        .main-nav {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #cfd4e6;
            font-weight: 500;
            font-size: 15px;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #f0c75e18;
            color: #f0c75e;
            text-decoration: none;
        }
        .breadcrumb {
            background: #151826;
            padding: 10px 0;
            border-bottom: 1px solid #22263a;
            font-size: 13px;
            color: #8b90a5;
        }
        .breadcrumb a {
            color: #f0c75e;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #555;
        }
        .content-area {
            padding: 36px 0 50px;
        }
        h1 {
            font-size: 36px;
            font-weight: 800;
            color: #f0c75e;
            margin-bottom: 12px;
            line-height: 1.25;
            border-left: 6px solid #f0c75e;
            padding-left: 20px;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            color: #f5e3b3;
            margin-top: 48px;
            margin-bottom: 16px;
            border-bottom: 2px solid #f0c75e33;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #f0d78c;
            margin-top: 32px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #e8d5a0;
            margin-top: 22px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #d5d9ec;
            font-size: 16px;
        }
        .highlight {
            background: #f0c75e11;
            border-left: 4px solid #f0c75e;
            padding: 12px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            background: #151b2b;
            border-radius: 14px;
            padding: 24px 20px;
            margin: 24px 0;
            border: 1px solid #2c314a;
        }
        .stats-box div {
            text-align: center;
        }
        .stats-box .num {
            font-size: 32px;
            font-weight: 800;
            color: #f0c75e;
            display: block;
        }
        .stats-box .label {
            font-size: 13px;
            color: #9ca3c0;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .feature-card {
            background: #131826;
            padding: 24px 18px;
            border-radius: 14px;
            border: 1px solid #262d48;
            transition: transform 0.2s, border-color 0.2s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            border-color: #f0c75e55;
        }
        .feature-card i {
            font-size: 30px;
            color: #f0c75e;
            margin-bottom: 12px;
        }
        .feature-card h4 {
            margin-top: 0;
        }
        .tip-list {
            list-style: none;
            padding: 0;
        }
        .tip-list li {
            background: #151b2b;
            padding: 12px 18px;
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 4px solid #f0c75e;
        }
        .tip-list li strong {
            color: #f0c75e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #131826;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #1e243b;
            color: #f0c75e;
            padding: 14px 16px;
            font-weight: 600;
            text-align: left;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #262d48;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1a2035;
        }
        .featured-img {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            background: #151b2b;
            border: 1px solid #2c314a;
            padding: 8px;
        }
        .featured-img img {
            border-radius: 10px;
        }
        .featured-img figcaption {
            text-align: center;
            padding: 10px 0 4px;
            font-size: 14px;
            color: #9ca3c0;
            font-style: italic;
        }
        .search-section {
            background: #111526;
            border-radius: 14px;
            padding: 30px 24px;
            margin: 40px 0;
            border: 1px solid #2c314a;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border-radius: 8px;
            border: 1px solid #363d5e;
            background: #0b0d17;
            color: #e8eaf0;
            font-size: 16px;
            outline: none;
            transition: border 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f0c75e;
        }
        .search-section button {
            padding: 14px 32px;
            background: #f0c75e;
            color: #0b0d17;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.2s, transform 0.1s;
        }
        .search-section button:hover {
            background: #ffda7a;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .score-section {
            background: #111526;
            padding: 24px 22px;
            border-radius: 14px;
            border: 1px solid #2c314a;
        }
        .comment-section h3,
        .score-section h3 {
            margin-top: 0;
            font-size: 20px;
        }
        .comment-section form,
        .score-section form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .comment-section input,
        .comment-section textarea,
        .score-section select,
        .score-section button {
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #363d5e;
            background: #0b0d17;
            color: #e8eaf0;
            font-size: 15px;
            outline: none;
            transition: border 0.2s;
        }
        .comment-section textarea {
            min-height: 80px;
            resize: vertical;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .score-section select:focus {
            border-color: #f0c75e;
        }
        .comment-section button,
        .score-section button {
            background: #f0c75e;
            color: #0b0d17;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-section button:hover,
        .score-section button:hover {
            background: #ffda7a;
        }
        .score-section select {
            appearance: auto;
        }
        friend-link {
            display: block;
            background: #111526;
            border-radius: 14px;
            padding: 24px 22px;
            margin: 30px 0 10px;
            border: 1px solid #2c314a;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 20px;
            color: #f0c75e;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        friend-link li a {
            color: #b0b9d6;
            font-size: 14px;
        }
        friend-link li a:hover {
            color: #f0c75e;
        }
        .site-footer {
            background: #0a0c16;
            border-top: 1px solid #1f243a;
            padding: 28px 0 20px;
            text-align: center;
            font-size: 14px;
            color: #6e7595;
        }
        .site-footer .copyright {
            margin-top: 8px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #151a2b;
                padding: 14px 18px;
                border-radius: 10px;
                margin-top: 8px;
                border: 1px solid #2c314a;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 0;
                border-bottom: 1px solid #22263a;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 28px;
                padding-left: 14px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .wrapper {
                padding: 0 14px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 24px;
            }
            .my-logo {
                font-size: 20px;
            }
            .stats-box {
                grid-template-columns: 1fr 1fr;
                padding: 16px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .text-gold {
            color: #f0c75e;
        }
        .fw-bold {
            font-weight: 700;
        }
