        * {
            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: #f0f0f0;
            background: #0a0e17;
            background-image: radial-gradient(circle at 15% 50%, rgba(30, 60, 114, 0.3) 0%, transparent 55%);
            min-height: 100vh;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #1e3a8a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f59e0b, #dc2626);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            background: linear-gradient(90deg, #fbbf24, #ef4444);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #94a3b8;
            padding: 10px 0;
            background: rgba(30, 41, 59, 0.5);
            border-radius: 4px;
            margin-top: 5px;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #64748b;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            color: #e2e8f0;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: #f59e0b;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #e2e8f0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(15, 23, 42, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            border-top: 1px solid #334155;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e2e8f0;
            padding: 15px 0;
            border-bottom: 1px solid #334155;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            border-bottom: 1px solid #1e293b;
        }
        .hero h1 {
            font-size: 3.2rem;
            background: linear-gradient(to right, #fbbf24, #dc2626);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #334155;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .sidebar {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #334155;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        article h2 {
            font-size: 2.2rem;
            color: #fbbf24;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #374151;
        }
        article h3 {
            font-size: 1.6rem;
            color: #60a5fa;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 1.5em;
            color: #d1d5db;
            font-size: 1.1rem;
            text-align: justify;
        }
        article em {
            color: #fca5a5;
            font-style: italic;
        }
        article strong {
            color: #fef3c7;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(220, 38, 38, 0.2));
            border-left: 5px solid #f59e0b;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .gameplay-image {
            width: 100%;
            border-radius: 10px;
            margin: 30px auto;
            border: 2px solid #475569;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .gameplay-image:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 30px rgba(0,0,0,0.7);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: rgba(30, 41, 59, 0.5);
            border-radius: 8px;
            overflow: hidden;
        }
        .data-table th, .data-table td {
            padding: 18px 15px;
            text-align: left;
            border-bottom: 1px solid #475569;
        }
        .data-table th {
            background: #1e3a8a;
            color: #fef3c7;
            font-weight: 700;
        }
        .data-table tr:hover {
            background: rgba(59, 130, 246, 0.1);
        }
        .data-table td:first-child {
            font-weight: 600;
            color: #fbbf24;
        }
        .interactive-section {
            margin: 50px 0;
            padding: 30px;
            background: rgba(30, 41, 59, 0.8);
            border-radius: 12px;
        }
        .interactive-section h3 {
            color: #34d399;
            margin-top: 0;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 40px;
        }
        .search-box form, .comment-form form, .rating-form form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: flex-end;
        }
        .form-group {
            flex: 1;
            min-width: 250px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #cbd5e1;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 14px;
            background: rgba(51, 65, 85, 0.7);
            border: 1px solid #64748b;
            border-radius: 8px;
            color: #f1f5f9;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: #60a5fa;
            box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
        }
        button[type="submit"] {
            background: linear-gradient(90deg, #ea580c, #dc2626);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        button[type="submit"]:hover {
            background: linear-gradient(90deg, #f97316, #ef4444);
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(220, 38, 38, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #fbbf24;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 60px 0 40px;
            padding: 30px;
            background: rgba(15, 23, 42, 0.9);
            border-radius: 12px;
            border: 1px solid #374151;
        }
        .web-link {
            background: rgba(30, 41, 59, 0.7);
            padding: 18px;
            border-radius: 8px;
            border-left: 4px solid #ea580c;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateX(5px);
            background: rgba(30, 41, 59, 0.9);
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
            display: block;
        }
        .site-footer {
            background: #0f172a;
            border-top: 1px solid #1e293b;
            padding: 40px 0 30px;
            margin-top: 60px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #94a3b8;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        .copyright {
            color: #64748b;
            font-size: 0.95rem;
            border-top: 1px solid #334155;
            padding-top: 25px;
            max-width: 800px;
            margin: 0 auto;
        }
        .text-center {
            text-align: center;
        }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .emoji {
            font-size: 1.3em;
            vertical-align: middle;
            margin: 0 5px;
        }
