        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #0b0b0d;
            color: #dcdcdc;
            line-height: 1.8;
            padding: 0 0 0 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-image: radial-gradient(ellipse at 20% 50%, rgba(20, 20, 40, 0.6) 0%, transparent 70%);
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdf7e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            color: #f0e6d0;
            line-height: 1.3;
            margin-top: 0;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1.2rem;
            border-left: 6px solid #f5c842;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 2.0rem;
            margin: 2.8rem 0 1.2rem 0;
            border-bottom: 2px solid rgba(245, 200, 66, 0.25);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.6rem;
            margin: 2.2rem 0 0.9rem 0;
            color: #f0dca0;
        }
        h4 {
            font-size: 1.25rem;
            margin: 1.6rem 0 0.6rem 0;
            color: #d4c5a0;
        }
        p {
            margin-bottom: 1.3rem;
            font-size: 1.05rem;
            color: #cbcbcb;
        }
        ul,
        ol {
            margin: 0 0 1.5rem 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong,
        b {
            color: #f0e6d0;
            font-weight: 700;
        }
        em {
            color: #f5c842;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #f5c84240, transparent);
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        .site-header {
            background: #0f0f12;
            border-bottom: 2px solid #1e1e2a;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            background: rgba(11, 11, 13, 0.94);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5c842;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 2rem;
            color: #f5c842;
        }
        .my-logo:hover {
            color: #ffdf7e;
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            color: #aabbcc;
            font-size: 0.9rem;
            letter-spacing: 2px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #c0c0c8;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(245, 200, 66, 0.12);
            color: #f5c842;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c842;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(245, 200, 66, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 16px 0 6px 0;
            font-size: 0.9rem;
            color: #888;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li {
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
            font-weight: 600;
        }
        .search-section {
            margin: 2rem 0 2.8rem 0;
            background: #14141a;
            padding: 28px 32px;
            border-radius: 20px;
            border: 1px solid #1e1e2a;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #2a2a3a;
            background: #0b0b0d;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c842;
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: #f5c842;
            color: #0b0b0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffdf7e;
            transform: scale(1.02);
        }
        .hero-figure {
            margin: 1.8rem 0 2.8rem 0;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #1e1e2a;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
            position: relative;
        }
        .hero-figure img {
            width: 100%;
            height: auto;
            max-height: 520px;
            object-fit: cover;
            display: block;
        }
        .hero-caption {
            background: rgba(11, 11, 13, 0.85);
            padding: 16px 24px;
            font-size: 0.95rem;
            color: #bbb;
            border-top: 1px solid #1e1e2a;
            backdrop-filter: blur(6px);
        }
        .content-card {
            background: #121216;
            border-radius: 18px;
            padding: 32px 36px;
            margin: 2rem 0;
            border: 1px solid #1a1a24;
            transition: border-color 0.3s;
        }
        .content-card:hover {
            border-color: #2a2a3e;
        }
        .content-card h2:first-child {
            margin-top: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-item {
            background: #0e0e14;
            padding: 20px 16px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #1a1a28;
            transition: transform 0.2s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
            border-color: #f5c84240;
        }
        .stat-item i {
            font-size: 2.2rem;
            color: #f5c842;
            margin-bottom: 8px;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0e6d0;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #999;
        }
        .swtor-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.98rem;
            background: #0e0e14;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #1e1e2a;
        }
        .swtor-table th {
            background: #1a1a28;
            color: #f5c842;
            font-weight: 700;
            padding: 14px 16px;
            text-align: left;
        }
        .swtor-table td {
            padding: 12px 16px;
            border-top: 1px solid #1a1a24;
            color: #ccc;
        }
        .swtor-table tr:hover td {
            background: rgba(245, 200, 66, 0.04);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 2.5rem 0;
        }
        @media(max-width:760px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #12121a;
            border-radius: 18px;
            padding: 28px 30px;
            border: 1px solid #1e1e2a;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a2a3a;
            background: #0b0b0d;
            color: #eee;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f5c842;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 28px;
            border: none;
            border-radius: 30px;
            background: #f5c842;
            color: #0b0b0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ffdf7e;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #444;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        friend-link {
            display: block;
            padding: 24px 0 12px 0;
            font-size: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 16px 8px 0;
            padding: 6px 14px;
            background: #14141c;
            border-radius: 20px;
            border: 1px solid #1e1e2a;
            font-size: 0.92rem;
            transition: all 0.25s;
        }
        friend-link a:hover {
            background: #1e1e2e;
            border-color: #f5c84240;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0a0e;
            border-top: 2px solid #1a1a26;
            padding: 28px 0 36px 0;
            margin-top: 4rem;
            text-align: center;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
            color: #777;
            margin-top: 12px;
        }
        .site-footer .copyright strong {
            color: #aaa;
        }
        @media(max-width:860px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 16px 0 8px 0;
                border-top: 1px solid #1a1a26;
                margin-top: 8px;
            }
            .main-nav a {
                padding: 12px 18px;
                border-radius: 10px;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            h1 {
                font-size: 2.0rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-card {
                padding: 20px 18px;
            }
            .search-section {
                padding: 20px 18px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                width: 100%;
                min-width: unset;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-figure {
                margin: 1rem 0 1.8rem 0;
            }
            .site-header {
                padding: 8px 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .content-card {
                padding: 16px 14px;
            }
            .feedback-card {
                padding: 18px 16px;
            }
            .swtor-table {
                font-size: 0.82rem;
            }
            .swtor-table th,
            .swtor-table td {
                padding: 8px 10px;
            }
        }
        .text-glow {
            color: #f5c842;
            text-shadow: 0 0 20px rgba(245, 200, 66, 0.15);
        }
        .tag {
            display: inline-block;
            background: #1a1a28;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #aaa;
            margin-right: 6px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #777;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 1.2rem 0;
        }
        .last-updated i {
            color: #f5c842;
        }
        .highlight-box {
            background: #1a1a28;
            border-left: 4px solid #f5c842;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 1.8rem 0;
        }
        @media(max-width:700px) {
            .two-col {
                grid-template-columns: 1fr;
            }
        }
