        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #7cb8ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        header {
            background: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #3a3a8c;
            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: 800;
            background: linear-gradient(90deg, #ffaa00, #ff5500);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #ffcc66, #ff8844);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo::before {
            content: "⚔️ ";
        }
        .my-logo::after {
            content: " ⚔️";
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            padding: 8px 12px;
            border-radius: 5px;
            font-weight: 600;
        }
        .desktop-nav a:hover {
            background: rgba(124, 184, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #7cb8ff;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 30, 0.98);
            flex-direction: column;
            padding: 20px;
            border-top: 1px solid #3a3a8c;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 5px;
            background: rgba(255,255,255,0.05);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd966;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ffaa00, #ffdd00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 5px solid #ffaa00;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #7cb8ff;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #3a3a8c;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffd966;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #c8a2ff;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #d0d0ff;
            padding: 20px;
            background: rgba(58, 58, 140, 0.2);
            border-radius: 10px;
            border-left: 4px solid #7cb8ff;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,170,0,0.1), transparent);
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #ffaa00;
        }
        .info-box {
            background: rgba(30, 60, 120, 0.3);
            border: 1px solid #3a3a8c;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }
        .info-box h3 {
            margin-top: 0;
            color: #7cb8ff;
        }
        .champion-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .champion-card {
            background: rgba(40, 40, 70, 0.8);
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid transparent;
        }
        .champion-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(124, 184, 255, 0.3);
            border-color: #7cb8ff;
        }
        aside {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #ffaa00;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #3a3a8c;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #3a3a8c;
            background: rgba(30, 30, 60, 0.9);
            color: #e0e0ff;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #7cb8ff;
            box-shadow: 0 0 0 2px rgba(124, 184, 255, 0.2);
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #3a3a8c, #5a5aaa);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #5a5aaa, #7a7acc);
            transform: scale(1.03);
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 15px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd700;
        }
        footer {
            background: rgba(10, 10, 20, 0.95);
            border-top: 2px solid #3a3a8c;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            margin: 8px 0;
            background: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(124, 184, 255, 0.15);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #3a3a8c;
            color: #aaa;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        .emoji { font-size: 1.2em; }
        .last-updated {
            font-style: italic;
            color: #aaa;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px dashed #3a3a8c;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article, aside { padding: 25px; }
            .champion-list { grid-template-columns: 1fr; }
        }
