:root {
            --primary-dark: #0a1428;
            --primary-blue: #005aff;
            --secondary-gold: #c8aa6e;
            --zaun-green: #00ff9d;
            --piltover-yellow: #ffde82;
            --text-light: #f0e6d2;
            --text-gray: #a09b8c;
            --bg-card: #1e2328;
            --border-color: #3c3c41;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--zaun-green);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(10, 20, 40, 0.95), rgba(10, 20, 40, 0.8));
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-color);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--secondary-gold), var(--piltover-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--secondary-gold);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--zaun-green);
            transition: width 0.3s ease;
        }
        nav a:hover:after {
            width: 100%;
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            border-top: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .hero {
            padding: 60px 0;
            text-align: center;
            background: radial-gradient(circle at center, #1a2b4d 0%, var(--primary-dark) 70%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--piltover-yellow), var(--zaun-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-gray);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        main {
            background-color: rgba(30, 35, 40, 0.5);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid var(--border-color);
        }
        article h2 {
            font-size: 2.2rem;
            color: var(--secondary-gold);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        article h3 {
            font-size: 1.8rem;
            color: var(--piltover-yellow);
            margin: 30px 0 15px;
        }
        article h4 {
            font-size: 1.4rem;
            color: var(--zaun-green);
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .highlight {
            background: rgba(200, 170, 110, 0.1);
            border-left: 4px solid var(--secondary-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            border: 2px solid var(--border-color);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            color: var(--secondary-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        .search-box button {
            width: 100%;
            padding: 12px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #0047cc;
        }
        .rating-widget .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .rating-widget .stars i {
            color: var(--text-gray);
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: var(--secondary-gold);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            padding: 12px 25px;
            background: var(--zaun-green);
            color: var(--primary-dark);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #00cc7a;
        }
        .link-list a {
            display: block;
            padding: 10px 0;
            border-bottom: 1px dashed var(--border-color);
        }
        .link-list a:last-child {
            border-bottom: none;
        }
        footer {
            background-color: #0a0e17;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 2px solid var(--border-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: var(--secondary-gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            color: var(--text-gray);
        }
        friend-link:hover {
            color: var(--text-light);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--text-gray);
            font-style: italic;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary-dark);
                padding: 20px;
                border-top: 1px solid var(--border-color);
                z-index: 999;
            }
            nav ul.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            main {
                padding: 25px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
