        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0d1220 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .desktop-nav a:hover {
            background: rgba(255, 204, 0, 0.1);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a1f2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 0.8rem;
            border-bottom: 1px solid #2a2f3e;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #141927;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb span {
            color: #ffcc00;
        }
        .hero {
            background: linear-gradient(rgba(10,14,23,0.9), rgba(10,14,23,0.9)), url('https://images.unsplash.com/photo-1538481199705-c710c4e965fc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center/cover;
            padding: 3rem 1rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #ffcc00;
            text-shadow: 2px 2px 4px #000;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid #ffcc00;
            border-radius: 5px 0 0 5px;
            background: #1a1f2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            background: #ffcc00;
            color: #0a0e17;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff9900;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background: #141927;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .content h2, .content h3 {
            color: #ffcc00;
            margin: 1.8rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a2f3e;
        }
        .content h2 {
            font-size: 1.8rem;
        }
        .content h3 {
            font-size: 1.4rem;
        }
        .content p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .content strong {
            color: #ffcc00;
        }
        .content emoji {
            font-size: 1.2rem;
            margin-right: 0.3rem;
        }
        .champion-img {
            float: left;
            margin: 0 1.5rem 1rem 0;
            border: 3px solid #ffcc00;
            border-radius: 8px;
            max-width: 400px;
        }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
        .sidebar {
            background: #141927;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            align-self: start;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 2rem;
        }
        .rating-widget h3, .comment-widget h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            color: #555;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #ffcc00;
        }
        .rating-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            background: #1a1f2e;
            border: 1px solid #2a2f3e;
            border-radius: 5px;
            color: #fff;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background: #ffcc00;
            color: #0a0e17;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #ff9900;
        }
        .longtail-links {
            background: #141927;
            padding: 2rem;
            margin-top: 3rem;
            border-top: 2px solid #ffcc00;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background: #1a1f2e;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            background: #222838;
        }
        footer {
            background: #0d1220;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #2a2f3e;
            margin-top: 2rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.2rem; }
            .desktop-nav { display: none; }
            .mobile-nav-toggle { display: block; }
            .champion-img { float: none; margin: 0 auto 1.5rem; display: block; }
        }
        @media (max-width: 576px) {
            .hero h1 { font-size: 1.8rem; }
            .content { padding: 1.5rem; }
            .sidebar { padding: 1rem; }
        }
