:root {
            --primary-dark: #0a1428;
            --primary-blue: #1a73e8;
            --accent-gold: #c8aa6e;
            --accent-red: #e84057;
            --accent-green: #0acf83;
            --text-primary: #f0f6fc;
            --text-secondary: #b0b7c3;
            --bg-card: #111b2e;
            --border-color: #2d3b52;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            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;
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #f0e6d2;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--accent-gold), #f0e6d2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--text-secondary);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--text-primary);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--bg-card);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        main {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, #fff, var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        article h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
            color: var(--accent-gold);
        }
        article h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #fff;
        }
        article h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--text-secondary);
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        article strong {
            color: var(--accent-gold);
            font-weight: 600;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }
        .update-time {
            color: var(--accent-green);
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .info-box {
            background: rgba(26, 115, 232, 0.1);
            border-left: 4px solid var(--primary-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background: rgba(200, 170, 110, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .server-status-widget {
            background: linear-gradient(135deg, #1a2b4a, #0a1428);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
        }
        .server-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .server-card {
            background: var(--bg-card);
            padding: 1.2rem;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .server-card:hover {
            border-color: var(--border-color);
            transform: translateY(-3px);
        }
        .server-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .status-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }
        .status-up {
            background-color: var(--accent-green);
            box-shadow: 0 0 10px var(--accent-green);
        }
        .status-down {
            background-color: var(--accent-red);
            box-shadow: 0 0 10px var(--accent-red);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px 0 0 6px;
            color: var(--text-primary);
        }
        .search-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #0d62d9;
        }
        .rating-widget {
            text-align: center;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.3rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        .star-rating input:checked ~ label {
            color: var(--accent-gold);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-primary);
            margin-bottom: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #0d62d9;
        }
        .site-footer {
            background-color: #090f1c;
            margin-top: 4rem;
            padding: 3rem 0 2rem;
            border-top: 1px solid var(--border-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            article h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 0.8rem 0;
            }
            main {
                padding: 1.5rem;
            }
            .server-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            article h1 {
                font-size: 1.8rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: flex-start;
            }
        }
