        *,
        *::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: #0b0d14;
            color: #e0e4f0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f7ff;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .section-padding {
            padding: 3.5rem 0;
        }
        .site-header {
            background: #141821;
            border-bottom: 2px solid #2a2f42;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, #f0c94b, #f76b1c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(247, 107, 28, 0.25);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            font-size: 1.6rem;
            -webkit-text-fill-color: initial;
            color: #f76b1c;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: initial;
            color: #8892b0;
            font-weight: 400;
            letter-spacing: 0.08em;
            display: block;
            margin-top: 0.1rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 0.9rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: #ccd6f0;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            position: relative;
        }
        .main-nav a:hover {
            background: rgba(240, 201, 75, 0.12);
            color: #f0c94b;
            text-decoration: none;
        }
        .main-nav a.active {
            background: rgba(240, 201, 75, 0.18);
            color: #f0c94b;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px 4px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #ccd6f0;
            border-radius: 3px;
            transition: 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        .breadcrumb {
            background: #1a1e2c;
            padding: 0.7rem 0;
            border-bottom: 1px solid #2a2f42;
            font-size: 0.8rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a6280;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #8892b0;
        }
        .breadcrumb a:hover {
            color: #f0c94b;
        }
        .breadcrumb .current {
            color: #f0c94b;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #0f131f 0%, #1a1e30 100%);
            padding: 4rem 0 3.5rem;
            border-bottom: 2px solid #2a2f42;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -40%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(247, 107, 28, 0.08), transparent 70%);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f5f7ff, #f0c94b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            color: #a8b2d4;
            max-width: 720px;
            margin-bottom: 1.5rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            font-size: 0.9rem;
            color: #7a84a8;
        }
        .hero-meta i {
            margin-right: 0.4rem;
            color: #f0c94b;
        }
        .hero-meta .update-badge {
            background: #2a2f42;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-weight: 500;
            color: #f0c94b;
        }
        h2 {
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            border-left: 5px solid #f0c94b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
            color: #e8edff;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.6rem;
            margin-bottom: 0.5rem;
            color: #d0d8f0;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0d6ec;
        }
        .content-card {
            background: #141a28;
            border-radius: 14px;
            padding: 2rem 2rem 2.2rem;
            margin: 2rem 0;
            border: 1px solid #242a40;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .featured-image {
            border-radius: 14px;
            overflow: hidden;
            margin: 2rem 0 2.5rem;
            border: 1px solid #2a2f42;
            background: #0d1120;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .featured-image figcaption {
            padding: 0.9rem 1.5rem;
            font-size: 0.85rem;
            color: #8892b0;
            background: #0d1120;
            border-top: 1px solid #1e2438;
        }
        .search-block {
            display: flex;
            gap: 0.5rem;
            max-width: 560px;
            margin: 1.8rem 0;
            flex-wrap: wrap;
        }
        .search-block input {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border-radius: 40px;
            border: 2px solid #2a2f42;
            background: #0d1120;
            color: #e0e4f0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-block input:focus {
            border-color: #f0c94b;
            box-shadow: 0 0 0 4px rgba(240, 201, 75, 0.15);
        }
        .search-block button {
            padding: 0.75rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f0c94b, #e05a1a);
            color: #0b0d14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-block button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(240, 201, 75, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #141a28;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            border: 1px solid #242a40;
        }
        .feedback-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card h4 i {
            color: #f0c94b;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            margin: 1rem 0 1.2rem;
            font-size: 1.6rem;
            color: #3a4058;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.hover {
            color: #f0c94b;
            transform: scale(1.15);
        }
        .star-rating i.selected {
            color: #f0c94b;
        }
        .feedback-card textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 2px solid #2a2f42;
            background: #0d1120;
            color: #e0e4f0;
            font-size: 0.9rem;
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .feedback-card textarea:focus {
            border-color: #f0c94b;
        }
        .feedback-card .btn-submit {
            margin-top: 0.8rem;
            padding: 0.6rem 2rem;
            border-radius: 40px;
            border: none;
            background: #f0c94b;
            color: #0b0d14;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .feedback-card .btn-submit:hover {
            background: #ffdd66;
            transform: scale(1.02);
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.8rem 0 0.4rem;
        }
        .inline-link-list a {
            background: rgba(240, 201, 75, 0.08);
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.85rem;
            border: 1px solid rgba(240, 201, 75, 0.15);
            transition: all 0.2s;
        }
        .inline-link-list a:hover {
            background: rgba(240, 201, 75, 0.2);
            border-color: #f0c94b;
            text-decoration: none;
        }
        .gang-table-wrap {
            overflow-x: auto;
            margin: 2rem 0;
        }
        .gang-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: #101624;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #242a40;
        }
        .gang-table th {
            background: #1a1e30;
            color: #f0c94b;
            padding: 0.9rem 1rem;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #2a2f42;
        }
        .gang-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #1e2438;
            color: #c8d0ec;
        }
        .gang-table tr:last-child td {
            border-bottom: none;
        }
        .gang-table tr:hover td {
            background: rgba(240, 201, 75, 0.04);
        }
        .site-footer {
            background: #0c0f1a;
            border-top: 2px solid #1e2438;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-grid h5 {
            font-size: 1rem;
            color: #f0c94b;
            margin-bottom: 0.8rem;
        }
        .footer-grid a {
            display: block;
            font-size: 0.85rem;
            color: #8892b0;
            padding: 0.2rem 0;
        }
        .footer-grid a:hover {
            color: #f0c94b;
        }
        .friend-link {
            margin: 1.2rem 0 0.8rem;
            padding: 1rem 1.2rem;
            background: #101624;
            border-radius: 10px;
            border: 1px solid #242a40;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            font-size: 0.85rem;
        }
        .friend-link a {
            color: #8892b0;
        }
        .friend-link a:hover {
            color: #f0c94b;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1a1e30;
            font-size: 0.8rem;
            color: #5a6280;
        }
        .copyright strong {
            color: #8892b0;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141821;
                padding: 1rem 0.5rem 1.2rem;
                border-top: 1px solid #2a2f42;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 6px;
                width: 100%;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .section-padding {
                padding: 2rem 0;
            }
            .content-card {
                padding: 1.5rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .wrapper {
                padding: 0 0.9rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-block input {
                min-width: 140px;
            }
        }
        .text-accent {
            color: #f0c94b;
        }
        .text-muted {
            color: #7a84a8;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .highlight {
            background: rgba(240, 201, 75, 0.1);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
            color: #f0c94b;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f0c94b;
            color: #0b0d14;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 20px rgba(240, 201, 75, 0.25);
            transition: transform 0.2s, box-shadow 0.2s;
            z-index: 50;
        }
        .scroll-top:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 30px rgba(240, 201, 75, 0.4);
        }
