:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-gold: #d4af37;
            --accent-red: #e94560;
            --text-light: #f1f1f1;
            --text-muted: #b8b8b8;
            --card-bg: #0f3460;
            --border-color: #2d4059;
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        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(--secondary-dark) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .search-section {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
            background-color: #1a2b4a;
            color: var(--text-light);
        }
        .search-btn {
            padding: 15px 25px;
            background-color: var(--accent-red);
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #c1121f;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--accent-gold);
        }
        .article-card h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            line-height: 1.2;
        }
        .article-card h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: var(--text-light);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
        }
        .article-card h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: var(--accent-gold);
        }
        .article-card h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--text-muted);
        }
        .article-card p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-card strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .article-card em {
            color: var(--text-muted);
            font-style: italic;
        }
        .article-card ul, .article-card ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article-card li {
            margin-bottom: 0.8rem;
        }
        .gear-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .update-time {
            display: inline-block;
            background-color: #2d4059;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .update-time i {
            margin-right: 0.5rem;
            color: var(--accent-gold);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .related-links li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--accent-red);
            font-size: 0.8rem;
        }
        .rating-widget, .comment-widget {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            margin-top: 2rem;
            box-shadow: var(--shadow);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            direction: rtl;
            justify-content: center;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: var(--accent-gold);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-control {
            padding: 12px;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            background-color: #1a2b4a;
            color: var(--text-light);
            font-size: 1rem;
        }
        .submit-btn {
            padding: 15px;
            background: linear-gradient(to right, var(--accent-red), #c1121f);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        .site-footer {
            background-color: rgba(5, 5, 15, 0.98);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid var(--accent-gold);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-bottom: 1px dashed var(--border-color);
            color: var(--text-muted);
        }
        friend-link:hover {
            color: var(--accent-gold);
            text-decoration: none;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-nav ul {
                gap: 1rem;
            }
            .article-card h1 {
                font-size: 2.2rem;
            }
            .article-card h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background-color: var(--secondary-dark);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: left 0.5s ease;
                box-shadow: var(--shadow);
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                font-size: 1.2rem;
            }
            .article-card {
                padding: 1.5rem;
            }
        }
