:root {
            --primary-dark: #1a1a2e;
            --primary-blue: #16213e;
            --accent-teal: #0fce7c;
            --accent-red: #e94560;
            --text-light: #f1f1f1;
            --text-gray: #b8b8b8;
            --border-color: #2d4059;
            --card-bg: rgba(22, 33, 62, 0.7);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        * {
            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: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: var(--accent-teal);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-teal), #2af5ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a:hover {
            text-decoration: none;
            color: var(--accent-teal);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-teal);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(22, 33, 62, 0.5);
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: var(--accent-teal);
        }
        .breadcrumb .current {
            color: var(--accent-teal);
            font-weight: bold;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }
        .hero .subtitle {
            font-size: 1.4rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .update-time {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--card-bg);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid var(--border-color);
        }
        .update-time i {
            color: var(--accent-teal);
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .article-content {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-content h2 {
            font-size: 2.3rem;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-red);
            color: var(--accent-teal);
        }
        .article-content h2:first-of-type {
            margin-top: 0;
        }
        .article-content h3 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        .article-content h4 {
            font-size: 1.4rem;
            margin-top: 30px;
            margin-bottom: 10px;
            color: var(--text-gray);
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--accent-teal);
            font-weight: 700;
        }
        .article-content em {
            color: var(--text-gray);
        }
        .highlight-box {
            background: linear-gradient(90deg, rgba(15, 206, 124, 0.1) 0%, rgba(22, 33, 62, 0.3) 100%);
            border-left: 4px solid var(--accent-teal);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .weapon-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(10, 15, 30, 0.5);
            border-radius: 8px;
            overflow: hidden;
        }
        .weapon-table th {
            background-color: var(--accent-red);
            padding: 15px;
            text-align: left;
        }
        .weapon-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .weapon-table tr:last-child td {
            border-bottom: none;
        }
        .weapon-table tr:hover {
            background-color: rgba(233, 69, 96, 0.1);
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 2px solid var(--border-color);
            transition: transform 0.5s ease;
        }
        .featured-img:hover {
            transform: scale(1.01);
        }
        .link-list {
            background: rgba(10, 15, 30, 0.5);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list ul {
            list-style-type: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .link-list li {
            padding: 10px 0;
            border-bottom: 1px dashed var(--border-color);
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--accent-teal);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form input {
            width: 100%;
            padding: 14px;
            background: rgba(10, 15, 30, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            margin-bottom: 15px;
        }
        .search-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, var(--accent-teal), #1a9d6e);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(to right, #0eb972, var(--accent-teal));
            transform: translateY(-2px);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #ffd700;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .score-form input, .score-form textarea {
            width: 100%;
            padding: 14px;
            background: rgba(10, 15, 30, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            margin-bottom: 15px;
            resize: vertical;
        }
        .score-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, var(--accent-red), #c2185b);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .score-form button:hover {
            background: linear-gradient(to right, #d32f2f, var(--accent-red));
            transform: translateY(-2px);
        }
        .comments-section {
            margin-top: 60px;
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid var(--border-color);
        }
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 14px;
            background: rgba(10, 15, 30, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            padding: 14px 30px;
            background: linear-gradient(to right, var(--primary-blue), #253a6e);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: linear-gradient(to right, #1a2b50, var(--primary-blue));
            transform: translateY(-2px);
        }
        .site-footer {
            background-color: rgba(10, 15, 30, 0.98);
            border-top: 1px solid var(--border-color);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-teal), #2af5ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }
        friend-link {
            display: block;
            margin: 8px 0;
            color: var(--text-gray);
        }
        friend-link a {
            color: var(--text-gray);
        }
        friend-link a:hover {
            color: var(--accent-teal);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: var(--primary-blue);
                width: 100%;
                text-align: center;
                padding: 30px 0;
                gap: 25px;
                transition: 0.5s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 2rem;
            }
            .article-content h3 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .subtitle {
                font-size: 1.1rem;
            }
            .article-content {
                padding: 20px;
            }
            .link-list ul {
                grid-template-columns: 1fr;
            }
        }
