        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-blue: #0a1428;
            --secondary-gold: #c8aa6e;
            --accent-red: #c91c1c;
            --text-light: #f0e6d2;
            --text-gray: #a09b8c;
            --dark-bg: #010a13;
            --card-bg: #091428;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            color: var(--secondary-gold);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            margin-top: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.4rem;
            border-left: 4px solid var(--accent-red);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-light);
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-gray);
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(1, 10, 19, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--secondary-gold);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--secondary-gold);
            text-decoration: none;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 10px var(--secondary-gold);
        }
        .my-logo span {
            color: var(--accent-red);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover {
            background-color: var(--secondary-gold);
            color: var(--primary-blue);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--secondary-gold);
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 1rem;
            padding: 2rem;
            background-color: var(--card-bg);
            border-top: 1px solid var(--secondary-gold);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(9, 20, 40, 0.7);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--secondary-gold);
        }
        .breadcrumb span {
            color: var(--text-light);
            margin: 0 0.5rem;
        }
        .search-section {
            background: linear-gradient(90deg, var(--card-bg) 0%, #0c1b36 100%);
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid var(--secondary-gold);
        }
        .search-form {
            display: flex;
            gap: 1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1.2rem 1.5rem;
            border: 2px solid var(--secondary-gold);
            border-radius: 8px;
            background-color: rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .search-btn {
            padding: 0 2.5rem;
            background: linear-gradient(135deg, var(--secondary-gold) 0%, #b89446 100%);
            border: none;
            border-radius: 8px;
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(200, 170, 110, 0.4);
        }
        .content-section {
            background-color: rgba(9, 20, 40, 0.7);
            padding: 2.5rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            border: 1px solid rgba(200, 170, 110, 0.2);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(200, 170, 110, 0.1) 0%, rgba(10, 20, 40, 0.3) 100%);
            border-left: 5px solid var(--accent-red);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .champion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .champion-card {
            background: linear-gradient(145deg, #0c1b36 0%, #091428 100%);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(200, 170, 110, 0.1);
        }
        .champion-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary-gold);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        }
        .champion-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 2px solid var(--secondary-gold);
        }
        .champion-info {
            padding: 1.5rem;
        }
        .meta-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background-color: var(--accent-red);
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .interaction-section {
            background-color: var(--card-bg);
            padding: 3rem;
            border-radius: 12px;
            margin: 4rem 0;
        }
        .rating-system {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
        }
        .star {
            font-size: 2rem;
            color: var(--text-gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--secondary-gold);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input {
            padding: 1rem;
            border: 1px solid var(--secondary-gold);
            border-radius: 6px;
            background-color: rgba(255,255,255,0.05);
            color: var(--text-light);
            font-size: 1rem;
        }
        .submit-btn {
            align-self: flex-start;
            padding: 1rem 3rem;
            background: linear-gradient(135deg, var(--accent-red) 0%, #a01616 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(201, 28, 28, 0.4);
        }
        footer {
            background-color: var(--dark-bg);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid var(--secondary-gold);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary-gold);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(200, 170, 110, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 4px solid var(--secondary-gold);
        }
        friend-link a {
            color: var(--secondary-gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(200, 170, 110, 0.2);
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .update-time {
            color: var(--secondary-gold);
            font-weight: 600;
            background-color: rgba(200, 170, 110, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: inline-block;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .mobile-nav.active { display: flex; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            .container { padding: 0 15px; }
            .content-section { padding: 1.5rem; }
            .search-form { flex-direction: column; }
            .champion-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .my-logo { font-size: 1.8rem; }
            .interaction-section { padding: 2rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
        .text-bold { font-weight: 700; color: var(--secondary-gold); }
        .text-italic { font-style: italic; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
