        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0e17;
            --primary-gold: #d4af37;
            --secondary-red: #c41e3a;
            --accent-blue: #1a73e8;
            --text-light: #f5f7fa;
            --text-gray: #b0b7c3;
            --bg-card: #131823;
            --border-color: #2a3349;
            --gradient-gold: linear-gradient(135deg, #d4af37, #f7ef8a);
            --gradient-dark: linear-gradient(135deg, #0a0e17, #1a2236);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: var(--gradient-dark);
            border-bottom: 2px solid var(--primary-gold);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary-red);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--bg-card);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-light);
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 12px 0;
            margin-bottom: 30px;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--text-gray);
        }
        main {
            padding: 40px 0;
        }
        article {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid var(--border-color);
        }
        h1, h2, h3 {
            color: var(--primary-gold);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--secondary-red);
            padding-bottom: 15px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        h2 {
            font-size: 2rem;
            margin-top: 40px;
            color: var(--text-light);
            background: linear-gradient(90deg, var(--primary-gold), transparent);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
            color: var(--accent-blue);
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--primary-gold);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji-list {
            list-style: none;
            padding-left: 0;
        }
        .emoji-list li {
            padding: 12px 0 12px 40px;
            position: relative;
        }
        .emoji-list li::before {
            content: '⚔️';
            position: absolute;
            left: 0;
            top: 12px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .feature-card {
            background: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 15px;
        }
        .article-image {
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid var(--primary-gold);
            max-width: 800px;
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            padding: 10px;
            background: rgba(0,0,0,0.5);
        }
        .interaction-section {
            background: var(--primary-dark);
            border-radius: 12px;
            padding: 30px;
            margin: 50px 0;
            border: 2px solid var(--border-color);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: var(--text-gray);
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--primary-gold);
        }
        .btn-submit {
            background: var(--gradient-gold);
            color: var(--primary-dark);
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-submit:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        .search-container {
            margin: 40px 0;
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 18px 20px;
            border: 2px solid var(--primary-gold);
            border-right: none;
            border-radius: 8px 0 0 8px;
            background: var(--bg-card);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-box button {
            background: var(--gradient-gold);
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--primary-dark);
            font-weight: bold;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
            padding: 30px;
            background: var(--bg-card);
            border-radius: 12px;
        }
        .web-link {
            background: var(--primary-dark);
            padding: 15px;
            border-radius: 6px;
            border-left: 4px solid var(--accent-blue);
            transition: transform 0.2s;
        }
        .web-link:hover {
            transform: translateX(5px);
        }
        footer {
            background: var(--gradient-dark);
            padding: 50px 0 20px;
            border-top: 2px solid var(--primary-gold);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 800; }
        .text-gold { color: var(--primary-gold); }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .p-20 { padding: 20px; }
