* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        :root {
            --primary: #8a0303;
            --secondary: #d4af37;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #444;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #111;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2a0000, #000);
            padding: 1rem 0;
            border-bottom: 3px solid var(--secondary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(138, 3, 3, 0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd700, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .logo:hover {
            transform: scale(1.03);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--secondary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        nav a:hover {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--secondary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        nav a:hover::after {
            width: 80%;
        }
        .search-form {
            display: flex;
            margin-left: 2rem;
        }
        .search-form input {
            padding: 0.6rem 1rem;
            border: 1px solid var(--gray);
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 4px 0 0 4px;
            min-width: 200px;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #a00404;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(26,26,26,0.9);
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 8px;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: rgba(30,30,30,0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
        }
        h2 {
            color: #ff6b6b;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #444;
            font-size: 1.8rem;
        }
        h3 {
            color: #d4af37;
            margin: 1.8rem 0 1rem;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(138,3,3,0.2), transparent);
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: rgba(68,68,68,0.3);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid #555;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .champion-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            border: 3px solid var(--secondary);
            box-shadow: 0 15px 30px rgba(0,0,0,0.7);
            transition: var(--transition);
        }
        .champion-img:hover {
            transform: scale(1.01);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
        }
        .rating-section {
            background: rgba(26,26,26,0.9);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #444;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin-right: 5px;
            transition: var(--transition);
        }
        .stars span:hover {
            transform: scale(1.3);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 2rem;
        }
        input, textarea, select {
            padding: 1rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid #555;
            border-radius: 6px;
            color: white;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button[type="submit"] {
            background: linear-gradient(135deg, var(--primary), #ff6b6b);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        button[type="submit"]:hover {
            background: linear-gradient(135deg, #a00404, #ff5252);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(138,3,3,0.4);
        }
        aside {
            background: rgba(30,30,30,0.8);
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            border: 1px solid #333;
        }
        .toc {
            position: sticky;
            top: 120px;
        }
        .toc h3 {
            color: #ffd700;
            margin-bottom: 1.5rem;
        }
        .toc ul {
            list-style: none;
        }
        .toc li {
            margin-bottom: 0.8rem;
        }
        .toc a {
            color: #e0e0e0;
            text-decoration: none;
            display: block;
            padding: 0.7rem 1rem;
            background: rgba(68,68,68,0.3);
            border-radius: 6px;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }
        .toc a:hover {
            background: rgba(212, 175, 55, 0.2);
            border-left-color: var(--secondary);
            padding-left: 1.5rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(26,26,26,0.9);
            border-radius: 12px;
            border: 1px solid #333;
        }
        .web-link {
            background: rgba(68,68,68,0.3);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(212, 175, 55, 0.15);
            transform: translateX(10px);
        }
        .web-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        footer {
            background: linear-gradient(135deg, #000, #2a0000);
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--secondary);
            margin-top: 3rem;
            text-align: center;
        }
        .copyright {
            color: #aaa;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            nav {
                gap: 1rem;
            }
            .search-form input {
                min-width: 150px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .mobile-toggle {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            nav.active {
                display: flex;
            }
            .search-form {
                margin-left: 0;
                margin-top: 1rem;
                width: 100%;
            }
            .search-form input {
                flex-grow: 1;
            }
            h1 {
                font-size: 2.2rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
