:root {
            --primary-dark: #0a1a2d;
            --primary-blue: #1a3a5f;
            --accent-gold: #d4af37;
            --accent-red: #c53030;
            --text-light: #f0f8ff;
            --text-gray: #b0c4de;
            --bg-card: rgba(26, 58, 95, 0.7);
            --border-glow: rgba(212, 175, 55, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #0c2340 100%);
            color: var(--text-light);
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
            text-shadow: 0 0 8px rgba(255, 235, 59, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--border-glow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent-gold), #ff9d00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(to right, #ffeb3b, #ff9d00);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--primary-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-glow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 4px solid var(--accent-gold);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid var(--border-glow);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid var(--border-glow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: var(--text-light);
            padding-left: 15px;
            border-left: 6px solid var(--accent-red);
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--accent-gold);
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 12px;
            color: var(--text-gray);
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), transparent);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
        }
        .champion-img {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 15px;
            border: 3px solid var(--accent-gold);
            margin: 30px auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .search-box {
            margin: 30px 0;
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 10px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 15px;
            background: rgba(10, 26, 45, 0.8);
            border: 2px solid var(--primary-blue);
            border-radius: 8px 0 0 8px;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .search-box button {
            background: linear-gradient(to right, var(--accent-red), #9b2c2c);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #e53e3e, #c53030);
        }
        .interactive-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px dashed var(--border-glow);
        }
        .rating-box, .comment-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star.active, .star:hover {
            color: var(--accent-gold);
        }
        .comment-box textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background: rgba(10, 26, 45, 0.8);
            border: 2px solid var(--primary-blue);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        .form-row input {
            flex-grow: 1;
            padding: 12px;
            background: rgba(10, 26, 45, 0.8);
            border: 2px solid var(--primary-blue);
            border-radius: 8px;
            color: var(--text-light);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--accent-gold), #b8941f);
            color: var(--primary-dark);
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        footer {
            background: rgba(10, 26, 45, 0.98);
            border-top: 2px solid var(--border-glow);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 5px;
            margin-bottom: 10px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .update-time {
            color: var(--accent-gold);
            font-style: italic;
            margin-bottom: 30px;
            text-align: right;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .content-area, .sidebar { padding: 25px; }
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .form-row { flex-direction: column; }
            .header-container { padding: 0 15px; }
        }
