        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a2a5a;
            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: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffcc00, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #6ee7ff, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(110, 231, 255, 0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #6ee7ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(15, 15, 40, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2a2a5a;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px 10px;
            border-bottom: 1px solid #2a2a5a;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #6ee7ff;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .main-content {
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #2a2a5a;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.2);
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        .meta-info {
            color: #aaa;
            font-style: italic;
            margin-bottom: 25px;
        }
        .featured-img {
            margin: 30px auto;
            max-width: 900px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 3px solid #2a2a5a;
        }
        .article-body {
            font-size: 1.1rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .article-body p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .article-body h2 {
            color: #6ee7ff;
            margin: 2.5em 0 1em;
            padding-bottom: 10px;
            border-bottom: 1px solid #3a3a6a;
            font-size: 2rem;
        }
        .article-body h3 {
            color: #ff9966;
            margin: 2em 0 1em;
            font-size: 1.6rem;
        }
        .article-body h4 {
            color: #cc99ff;
            margin: 1.5em 0 0.8em;
            font-size: 1.3rem;
        }
        .article-body strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-body em {
            color: #99ff99;
            font-style: italic;
        }
        .highlight-box {
            background: rgba(42, 42, 90, 0.5);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip {
            background: rgba(30, 60, 30, 0.4);
            border-left: 5px solid #99ff99;
            padding: 18px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #3a3a6a;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #6ee7ff;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ff9966;
            margin-bottom: 15px;
        }
        .champion-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(20, 20, 40, 0.7);
        }
        .champion-table th, .champion-table td {
            border: 1px solid #3a3a6a;
            padding: 12px 15px;
            text-align: left;
        }
        .champion-table th {
            background: #2a2a5a;
            color: #ffcc00;
        }
        .champion-table tr:nth-child(even) {
            background: rgba(42, 42, 90, 0.3);
        }
        .champion-table tr:hover {
            background: rgba(110, 231, 255, 0.1);
        }
        .interactive-section {
            background: rgba(15, 15, 35, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin: 50px auto;
            max-width: 800px;
            border: 2px solid #3a3a6a;
        }
        .interactive-section h2 {
            text-align: center;
            color: #ff9966;
            margin-bottom: 25px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #cc99ff;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #3a3a6a;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #6ee7ff;
            box-shadow: 0 0 0 2px rgba(110, 231, 255, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #555;
            justify-content: center;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #ff6b6b, #ffcc00);
            color: #000;
            font-weight: 700;
            padding: 14px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(90deg, #ffcc00, #6ee7ff);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
        }
        .btn-block {
            width: 100%;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid #2a2a5a;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(110, 231, 255, 0.05);
            border-color: #6ee7ff;
            transform: translateX(5px);
        }
        .site-footer {
            background: rgba(5, 5, 15, 0.98);
            border-top: 2px solid #2a2a5a;
            padding: 40px 0 20px;
            text-align: center;
            margin-top: 60px;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2a2a5a;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 10px; }
        .mb-2 { margin-bottom: 20px; }
        .mb-3 { margin-bottom: 30px; }
        .mt-3 { margin-top: 30px; }
        .emoji { font-size: 1.2em; }
