        * { 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: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #1a5fb4; text-decoration: none; transition: color 0.3s, background-color 0.3s; }
        a:hover { color: #1c71d8; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #ffbe0b; }
        .logo a:hover { text-decoration: none; color: #ffbe0b; }
        .nav-desktop { display: flex; gap: 25px; }
        .nav-desktop a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #2a5298;
            padding: 20px;
            border-top: 1px solid #3a62a8;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #e0e0e0;
            padding: 12px 15px;
            border-bottom: 1px solid #3a62a8;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #1a5fb4; }
        .breadcrumb i { margin: 0 8px; color: #888; }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            padding: 40px;
            overflow: hidden;
        }
        .article-header { margin-bottom: 30px; border-bottom: 3px solid #1a5fb4; padding-bottom: 20px; }
        .article-header h1 {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
            font-size: 0.95rem;
        }
        .meta span i { margin-right: 5px; color: #1a5fb4; }
        section { margin-bottom: 40px; }
        h2 {
            font-size: 1.8rem;
            color: #2a5298;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #c5d5ea;
        }
        h3 {
            font-size: 1.4rem;
            color: #3a62a8;
            margin: 20px 0 10px;
        }
        p { margin-bottom: 18px; text-align: justify; }
        .highlight {
            background-color: #f0f7ff;
            border-left: 5px solid #1a5fb4;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong { color: #1e3c72; }
        .featured-image {
            float: right;
            margin: 0 0 20px 30px;
            max-width: 45%;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border: 1px solid #ddd;
        }
        @media (max-width: 768px) {
            .featured-image { float: none; max-width: 100%; margin: 20px 0; }
        }
        .game-list, .tower-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .game-card, .tower-card {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .game-card:hover, .tower-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .emoji { font-size: 1.2em; margin-right: 8px; }
        .sidebar { background: white; border-radius: 12px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); padding: 25px; }
        .widget { margin-bottom: 30px; }
        .widget h3 { font-size: 1.3rem; color: #1e3c72; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
        .search-box { display: flex; }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background: #1a5fb4;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #2a5298; }
        .rating-widget { text-align: center; }
        .stars { font-size: 1.8rem; color: #ffc107; margin: 10px 0; }
        .stars i { cursor: pointer; transition: color 0.2s; }
        .stars i:hover { color: #ff9800; }
        .rating-result { font-weight: bold; margin-top: 10px; color: #1e3c72; }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background: #28a745;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: #218838; }
        .footer-links {
            background: #1e3c72;
            color: white;
            padding: 40px 20px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 15px;
            border-radius: 6px;
            border-left: 3px solid #ffbe0b;
            transition: background 0.3s;
        }
        .web-link:hover { background: rgba(255, 255, 255, 0.1); }
        .web-link a { color: #e0e0e0; }
        .web-link a:hover { color: white; text-decoration: none; }
        .site-footer {
            background: #0f1f3d;
            color: #b0b0b0;
            text-align: center;
            padding: 30px 20px;
            font-size: 0.9rem;
        }
        .site-footer a { color: #ccc; }
        .site-footer a:hover { color: white; }
        .footer-container { max-width: 1200px; margin: 0 auto; }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .article-header h1 { font-size: 2rem; }
            article { padding: 25px; }
            .content-grid { gap: 30px; }
            .game-list, .tower-list { grid-template-columns: 1fr; }
        }
