:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-gold: #f0a500;
            --accent-red: #e94560;
            --text-light: #f1f1f1;
            --text-gray: #b0b0b0;
            --border-color: #2d4059;
            --success-green: #4CAF50;
            --box-shadow: 0 5px 15px 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: '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%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        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;
        }
        header {
            background-color: rgba(26, 26, 46, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--accent-gold), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
            color: var(--accent-gold);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(240, 165, 0, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(22, 33, 62, 0.7);
            margin-bottom: 20px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--text-gray);
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--box-shadow);
        }
        .article-content h2 {
            color: var(--accent-gold);
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: var(--accent-red);
            margin: 25px 0 10px;
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight-box {
            background-color: rgba(22, 33, 62, 0.9);
            border-left: 5px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            margin: 25px 0;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid var(--border-color);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            padding: 10px;
            background-color: rgba(22, 33, 62, 0.5);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .strategy-list {
            list-style-type: none;
            margin-left: 20px;
        }
        .strategy-list li {
            padding: 8px 0;
            position: relative;
        }
        .strategy-list li::before {
            content: '⚔️';
            position: absolute;
            left: -25px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--box-shadow);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
        }
        .search-form button {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--accent-red);
            color: white;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: var(--text-gray);
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--accent-red);
            color: white;
        }
        .footer-links-section {
            background-color: rgba(22, 33, 62, 0.9);
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(26, 26, 46, 0.7);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--primary-dark);
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid var(--accent-gold);
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: var(--primary-dark);
                width: 100%;
                text-align: center;
                transition: 0.5s;
                padding: 20px;
                border-top: 1px solid var(--border-color);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            .meta-info {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
        @media (max-width: 576px) {
            .article-header h1 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 20px;
            }
        }
