* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0e17;
            --primary-accent: #00a8ff;
            --secondary-accent: #ff6b8b;
            --text-primary: #e0e0e0;
            --text-secondary: #a0aec0;
            --card-bg: #1a202c;
            --border-color: #2d3748;
            --success-color: #48bb78;
            --warning-color: #ed8936;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary-accent);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #151c2e 100%);
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--card-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .breadcrumb {
            background-color: rgba(26, 32, 44, 0.8);
            padding: 12px 0;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--primary-accent);
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .search-box {
            display: flex;
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 50px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }
        .search-box:focus-within {
            border-color: var(--primary-accent);
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 18px 25px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #0090e0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(90deg, #00a8ff, #ff6b8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta span i {
            margin-right: 8px;
            color: var(--primary-accent);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid var(--border-color);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid var(--border-color);
        }
        .main-content h2 {
            color: var(--primary-accent);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
            font-size: 1.8rem;
        }
        .main-content h3 {
            color: var(--secondary-accent);
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }
        .main-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .main-content strong {
            color: var(--secondary-accent);
            font-weight: 700;
        }
        .main-content em {
            color: #48bb78;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #1e2536, #171d2b);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid var(--primary-accent);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .stat-card h4 {
            color: var(--text-primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .stat-card p {
            color: var(--text-secondary);
            margin-bottom: 0;
        }
        .tip-box {
            background: rgba(0, 168, 255, 0.1);
            border-left: 5px solid var(--primary-accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .warning-box {
            background: rgba(237, 137, 54, 0.1);
            border-left: 5px solid var(--warning-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .champion-build {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: rgba(42, 50, 66, 0.6);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            align-items: center;
        }
        @media (max-width: 768px) {
            .champion-build {
                flex-direction: column;
            }
        }
        .build-icon {
            flex-shrink: 0;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary-accent);
        }
        .build-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .build-details {
            flex: 1;
        }
        .gear-set {
            display: inline-block;
            background: var(--primary-dark);
            color: var(--primary-accent);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid var(--primary-accent);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--primary-accent);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .popular-links {
            list-style: none;
        }
        .popular-links li {
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-color);
        }
        .popular-links li:last-child {
            border-bottom: none;
        }
        .user-interaction {
            margin: 60px 0;
            padding: 40px;
            background-color: var(--card-bg);
            border-radius: 15px;
            border: 1px solid var(--border-color);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .rating-widget, .comment-widget {
            padding: 25px;
            background: rgba(42, 50, 66, 0.6);
            border-radius: 10px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: var(--border-color);
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--warning-color);
        }
        .comment-form textarea {
            width: 100%;
            background: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 15px;
            color: var(--text-primary);
            margin: 15px 0;
            min-height: 150px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
            }
        }
        .form-row input {
            flex: 1;
            padding: 12px 15px;
            background: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary-accent), #0090e0);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
        }
        .footer-links-section {
            background-color: #151c2e;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: var(--card-bg);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-accent);
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(10px);
        }
        .site-footer {
            background-color: var(--primary-dark);
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid var(--border-color);
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(0, 168, 255, 0.1), transparent);
            padding: 3px 10px;
            border-radius: 4px;
        }
