* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0a0e17;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #c8aa6e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #f0d49e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(180deg, #0f1625 0%, #0a0e17 100%);
            border-bottom: 2px solid #1c2838;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c8aa6e, #f0d49e, #c8aa6e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(200, 170, 110, 0.15);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #c8aa6e;
            margin-right: 6px;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c8aa6e;
            color: #c8aa6e;
            font-size: 1.4rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #c8aa6e22;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #b0b8c8;
            transition: 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #1c2838;
            color: #f0d49e;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 4px;
            font-size: 0.8rem;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #7a8290;
        }
        .breadcrumb a {
            color: #8a92a0;
        }
        .breadcrumb a:hover {
            color: #c8aa6e;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #4a5060;
        }
        .hero {
            padding: 48px 0 32px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #f0d49e, #c8aa6e, #9a7a4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #a0a8b8;
            max-width: 800px;
            margin: 0 auto 24px;
        }
        .hero .updated {
            font-size: 0.9rem;
            color: #6a7280;
            border-top: 1px solid #1c2838;
            padding-top: 16px;
            display: inline-block;
        }
        section {
            padding: 48px 0;
            border-bottom: 1px solid #141c2a;
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0d49e;
            margin-bottom: 20px;
            letter-spacing: -0.3px;
            border-left: 4px solid #c8aa6e;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #d4c4a0;
            margin: 28px 0 14px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #b8a88a;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 16px;
            color: #d0d0d0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 24px 0;
        }
        .card {
            background: #111a28;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #1c2838;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }
        .card h3 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
        }
        .champ-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .champ-item {
            background: #0d1522;
            border: 1px solid #1a2438;
            border-radius: 12px;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: 0.2s;
        }
        .champ-item:hover {
            border-color: #c8aa6e44;
            background: #111b2e;
        }
        .champ-item i {
            font-size: 1.6rem;
            color: #c8aa6e;
            width: 32px;
            text-align: center;
        }
        .champ-item .champ-name {
            font-weight: 600;
            color: #e0d8c8;
        }
        .champ-item .champ-role {
            font-size: 0.8rem;
            color: #7a8290;
        }
        .tip-box {
            background: #0d1a2a;
            border-left: 4px solid #c8aa6e;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .tip-box i {
            color: #c8aa6e;
            margin-right: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0d1522;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #1a2438;
        }
        th {
            background: #141e32;
            color: #c8aa6e;
            font-weight: 600;
        }
        tr:hover td {
            background: #111b2e;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #0d1522;
            padding: 8px;
            border: 1px solid #1c2838;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #1a2438;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #6a7280;
            padding: 12px 0 4px;
        }
        .form-card {
            background: #111a28;
            border: 1px solid #1c2838;
            border-radius: 16px;
            padding: 28px;
            max-width: 640px;
            margin: 20px 0;
        }
        .form-card label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            color: #d0c8b8;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            background: #0a0e17;
            border: 1px solid #1c2838;
            border-radius: 8px;
            color: #e8e6e3;
            font-size: 1rem;
            transition: 0.2s;
            margin-bottom: 16px;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: #c8aa6e;
            box-shadow: 0 0 0 3px #c8aa6e22;
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #c8aa6e, #a88a4e);
            color: #0a0e17;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(200, 170, 110, 0.25);
            color: #0a0e17;
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c8aa6e;
            color: #c8aa6e;
        }
        .btn-outline:hover {
            background: #c8aa6e;
            color: #0a0e17;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
            margin-bottom: 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a4050;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0d49e;
        }
        .comment-list {
            margin: 20px 0;
        }
        .comment-item {
            background: #0d1522;
            border: 1px solid #1a2438;
            border-radius: 12px;
            padding: 18px 22px;
            margin-bottom: 12px;
        }
        .comment-item .author {
            font-weight: 600;
            color: #c8aa6e;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #6a7280;
            margin-left: 12px;
        }
        .comment-item .text {
            margin-top: 8px;
            color: #c8c8c8;
        }
        friend-link {
            display: block;
            padding: 32px 0;
            border-top: 1px solid #1c2838;
            margin-top: 24px;
        }
        friend-link .fl-head {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c8aa6e;
            margin-bottom: 16px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
        }
        friend-link .fl-list a {
            color: #8a92a0;
            font-size: 0.9rem;
        }
        friend-link .fl-list a:hover {
            color: #f0d49e;
        }
        .site-footer {
            background: #070b12;
            border-top: 2px solid #1c2838;
            padding: 32px 0 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #5a6270;
        }
        .site-footer .copyright {
            margin-top: 12px;
            color: #4a5260;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .champ-list {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 6px;
                background: #0d1522;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 16px;
            }
            section {
                padding: 32px 0;
            }
            .form-card {
                padding: 20px;
            }
            .table-wrap table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .champ-list {
                grid-template-columns: 1fr 1fr;
            }
            .champ-item {
                padding: 12px;
            }
            .champ-item i {
                font-size: 1.2rem;
                width: 24px;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .text-gold {
            color: #c8aa6e;
        }
        .text-muted {
            color: #6a7280;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-12 {
            gap: 12px;
        }
        .gap-24 {
            gap: 24px;
        }
        .items-center {
            align-items: center;
        }
        html {
            scroll-behavior: smooth;
        }
        .hidden-schema {
            display: none;
        }
        .score-display {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f0d49e;
        }
