        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0a1428;
            color: #f0e6d2;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #c8aa6e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover,
        a:focus {
            color: #f0e6d2;
            outline: 2px solid #c8aa6e;
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #c8aa6e;
            color: #0a1428;
            padding: 0.75rem 1.5rem;
            border-radius: 0 0 8px 8px;
            z-index: 10000;
            font-weight: 700;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0a1428 0%, #1a2a4a 100%);
            border-bottom: 2px solid #c8aa6e33;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 999;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f0e6d2;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 0 0 20px #c8aa6e55;
        }
        .my-logo i {
            color: #c8aa6e;
            font-size: 1.8rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, #c8aa6e, #f0e6d2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #a0b4c8;
            transition: all 0.3s ease;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: #c8aa6e;
            background: #c8aa6e15;
        }
        .main-nav a.active {
            color: #c8aa6e;
            background: #c8aa6e22;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #c8aa6e55;
            color: #f0e6d2;
            font-size: 1.5rem;
            padding: 0.4rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .hamburger:hover {
            border-color: #c8aa6e;
            background: #c8aa6e15;
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb-wrap {
            background: #0f1e3a;
            padding: 0.6rem 0;
            border-bottom: 1px solid #c8aa6e22;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem;
            list-style: none;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin-right: 0.4rem;
            color: #5a7a9a;
        }
        .breadcrumb a {
            color: #8aaac0;
        }
        .breadcrumb a:hover {
            color: #c8aa6e;
        }
        .breadcrumb .current {
            color: #c8aa6e;
            font-weight: 600;
        }
        .hero {
            padding: 3rem 0 2rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a2a4a88 0%, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #f0e6d2, #c8aa6e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.1rem;
            color: #a0b4c8;
            max-width: 800px;
            margin: 0 auto 1.5rem;
        }
        .hero .last-updated {
            display: inline-block;
            background: #c8aa6e22;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #c8aa6e;
            border: 1px solid #c8aa6e44;
        }
        .hero .last-updated i {
            margin-right: 0.4rem;
        }
        .search-section {
            padding: 1.5rem 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #c8aa6e44;
            background: #0f1e3a;
            transition: border-color 0.3s ease;
        }
        .search-form:focus-within {
            border-color: #c8aa6e;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.5rem;
            border: none;
            background: transparent;
            color: #f0e6d2;
            font-size: 1rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: #5a7a9a;
        }
        .search-form button {
            padding: 0.9rem 1.8rem;
            background: #c8aa6e;
            color: #0a1428;
            border: none;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #f0e6d2;
        }
        .main-content {
            padding: 2rem 0 3rem;
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #c8aa6e;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #c8aa6e33;
        }
        .content-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #f0e6d2;
            margin: 2rem 0 0.75rem 0;
        }
        .content-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #c8aa6ecc;
            margin: 1.5rem 0 0.5rem 0;
        }
        .content-body p {
            margin-bottom: 1.1rem;
            color: #d0d8e0;
            font-size: 1.02rem;
        }
        .content-body p strong {
            color: #f0e6d2;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
            color: #d0d8e0;
        }
        .content-body li {
            margin-bottom: 0.4rem;
        }
        .content-body .feature-img {
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
        }
        .content-body .feature-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #8aaac0;
            margin-top: 0.6rem;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 6rem;
            align-self: start;
        }
        .sidebar-card {
            background: #0f1e3a;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #c8aa6e22;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            color: #c8aa6e;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.6rem;
        }
        .sidebar-card li a {
            display: block;
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
            background: #0a1428;
            border-left: 3px solid #c8aa6e55;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        .sidebar-card li a:hover {
            background: #c8aa6e15;
            border-left-color: #c8aa6e;
            padding-left: 1.2rem;
        }
        .rating-section,
        .comment-section {
            background: #0f1e3a;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #c8aa6e22;
        }
        .rating-section h3,
        .comment-section h3 {
            font-size: 1.3rem;
            color: #c8aa6e;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #5a7a9a;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .stars i:hover,
        .stars i.active {
            color: #c8aa6e;
        }
        .stars i {
            transition: color 0.2s ease;
        }
        .rating-form button,
        .comment-form button {
            background: #c8aa6e;
            color: #0a1428;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #f0e6d2;
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            border: 2px solid #c8aa6e33;
            background: #0a1428;
            color: #f0e6d2;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            transition: border-color 0.3s ease;
        }
        .comment-form textarea:focus {
            border-color: #c8aa6e;
            outline: none;
        }
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 2px solid #c8aa6e33;
            background: #0a1428;
            color: #f0e6d2;
            font-size: 1rem;
            margin-bottom: 1rem;
            transition: border-color 0.3s ease;
        }
        .comment-form input:focus {
            border-color: #c8aa6e;
            outline: none;
        }
        .rating-result {
            margin-top: 1rem;
            color: #8aaac0;
            font-size: 0.95rem;
        }
        .site-footer {
            background: #0a1428;
            border-top: 2px solid #c8aa6e33;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #c8aa6e;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .site-footer p,
        .site-footer a {
            color: #8aaac0;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: #c8aa6e;
        }
        friend-link {
            display: block;
            background: #0f1e3a;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            border: 1px solid #c8aa6e22;
            margin-bottom: 1.5rem;
        }
        friend-link a {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            margin: 0.2rem 0.4rem 0.2rem 0;
            background: #c8aa6e15;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        friend-link a:hover {
            background: #c8aa6e30;
            color: #f0e6d2;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #c8aa6e22;
            color: #5a7a9a;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #8aaac0;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1e3a;
                border-radius: 16px;
                padding: 1rem;
                border: 1px solid #c8aa6e33;
                margin-top: 0.5rem;
                gap: 0.25rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
            }
            .hamburger {
                display: block;
            }
            .nav-overlay.open {
                display: block;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.5);
                z-index: -1;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .rating-section,
            .comment-section {
                padding: 1.25rem;
            }
            .stars {
                font-size: 1.6rem;
            }
            .search-form input {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .content-body p {
                font-size: 0.95rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .champion-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
        }
        .champion-table th {
            background: #c8aa6e;
            color: #0a1428;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .champion-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #c8aa6e22;
            color: #d0d8e0;
        }
        .champion-table tr:nth-child(even) td {
            background: #0f1e3a55;
        }
        .champion-table tr:hover td {
            background: #c8aa6e11;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #c8aa6e;
            color: #0a1428;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(200, 170, 110, 0.3);
            transition: all 0.3s ease;
            z-index: 99;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(200, 170, 110, 0.5);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
