* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a0e2a 0%, #1a1f3c 100%);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #00b4ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-spacing {
            padding: 60px 0;
        }
        .site-header {
            background: rgba(10, 14, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #00b4ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: #00b4ff;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(0, 180, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            right: -300px;
            width: 280px;
            height: calc(100vh - 80px);
            background: rgba(26, 31, 60, 0.98);
            backdrop-filter: blur(10px);
            flex-direction: column;
            padding: 30px;
            gap: 20px;
            transition: right 0.4s ease;
            z-index: 999;
            border-left: 2px solid #00b4ff;
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            display: block;
            font-size: 1.2rem;
            padding: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            margin: 20px 0;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb i {
            margin: 0 10px;
        }
        .hero {
            text-align: center;
            padding: 80px 0;
            background: radial-gradient(circle at center, #1a2b4a 0%, #0a0e2a 70%);
            border-radius: 15px;
            margin: 30px 0;
            border: 1px solid rgba(0, 180, 255, 0.3);
        }
        .hero h1 {
            font-size: 3.2rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.4);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #c0c0ff;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(0, 180, 255, 0.2);
        }
        .search-box h3 {
            color: #00b4ff;
            margin-bottom: 15px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #00b4ff;
            border-radius: 8px 0 0 8px;
            background: rgba(10, 14, 42, 0.8);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #00b4ff, #0088cc);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #00ccff, #0099dd);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(30, 35, 70, 0.6);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(255, 204, 0, 0.1);
        }
        .article-content h2 {
            color: #ffcc00;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #00b4ff;
        }
        .article-content h3 {
            color: #00b4ff;
            font-size: 1.7rem;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-content em {
            color: #aaa;
            font-style: italic;
        }
        .highlight-box {
            background: rgba(0, 180, 255, 0.1);
            border-left: 5px solid #ffcc00;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            margin: 40px auto;
            text-align: center;
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(30, 35, 70, 0.6);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 204, 0, 0.1);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 40px;
        }
        .sidebar-widget h4 {
            color: #ffcc00;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #00b4ff;
        }
        .rating-widget .stars {
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 15px 0;
        }
        .rating-widget select, .rating-widget textarea, .rating-widget input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            background: rgba(10, 14, 42, 0.8);
            border: 1px solid #00b4ff;
            border-radius: 8px;
            color: white;
        }
        .rating-widget button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            color: #0a0e2a;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .rating-widget button:hover {
            transform: scale(1.03);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 60px 0 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(255, 204, 0, 0.2);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #c0c0ff;
            font-weight: 600;
            display: block;
        }
        .site-footer {
            background: rgba(10, 14, 42, 0.95);
            padding: 40px 0 20px;
            border-top: 2px solid #00b4ff;
            text-align: center;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #00b4ff, #0088cc);
            color: white;
            border-radius: 8px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }
        .btn:hover {
            background: linear-gradient(90deg, #00ccff, #0099dd);
            box-shadow: 0 5px 15px rgba(0, 180, 255, 0.4);
        }
