        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: #0a0e17;
            background-image: radial-gradient(circle at 15% 50%, rgba(28, 58, 113, 0.1) 0%, transparent 25%), radial-gradient(circle at 85% 30%, rgba(94, 28, 113, 0.1) 0%, transparent 25%);
            min-height: 100vh;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #80ccff;
            text-shadow: 0 0 8px rgba(77, 166, 255, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #1a2332;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Teko', sans-serif;
            font-size: 2.4rem;
            font-weight: 700;
            background: linear-gradient(90deg, #cdf, #4da6ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            background: linear-gradient(90deg, #fff, #80ccff);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .nav-link {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #4da6ff, #80ccff);
            transition: width 0.3s ease, left 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #4da6ff;
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #131b2b;
            border-radius: 10px;
            padding: 20px;
            margin-top: 15px;
            border: 1px solid #1a2332;
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            margin: 20px 0 30px;
            font-size: 0.95rem;
            color: #a0aec0;
        }
        .breadcrumb a {
            color: #a0aec0;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        main {
            padding: 30px 0 60px;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, #fff, #4da6ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .last-updated {
            color: #a0aec0;
            font-style: italic;
            font-size: 0.95rem;
            margin-top: 10px;
        }
        .content-section {
            margin-bottom: 50px;
            background: rgba(19, 27, 43, 0.7);
            border-radius: 15px;
            padding: 35px;
            border: 1px solid #252f40;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h2 {
            font-size: 2.4rem;
            color: #fff;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d3748;
        }
        h3 {
            font-size: 1.8rem;
            color: #cdf;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #a0aec0;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(77, 166, 255, 0.15), transparent);
            border-left: 4px solid #4da6ff;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .build-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .build-card {
            background: #1a2332;
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #2d3748;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .build-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .champion-name {
            color: #ffcc00;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .interactive-section {
            background: #131b2b;
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid #252f40;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .feature-box {
            background: #1a2332;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #2d3748;
        }
        .feature-box h3 {
            margin-top: 0;
        }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            margin: 10px 0 20px;
            background: #0f1729;
            border: 1px solid #2d3748;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #2563eb, #4f46e5);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            color: #4a5568;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star.active,
        .star:hover {
            color: #ffcc00;
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 30px auto;
            border: 2px solid #2d3748;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        .site-footer {
            background: #0a0e17;
            border-top: 1px solid #1a2332;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #cdf;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #1a2332;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            .content-section { padding: 25px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: flex; }
            .header-content { flex-wrap: wrap; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            .content-section { padding: 20px; }
            .feature-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .container { padding: 0 15px; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
