        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        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;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            margin-bottom: 3rem;
        }
        .site-header {
            background: rgba(10, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #0c4a6e;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #7dd3fc, #a5b4fc);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background: rgba(56, 189, 248, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e6e6e6;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 15, 35, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid #0c4a6e;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a:last-child {
            color: #cbd5e1;
            font-weight: 600;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .search-box {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            margin: 2rem auto;
            max-width: 600px;
            display: flex;
            border: 2px solid #475569;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            color: #f1f5f9;
            font-size: 1rem;
            padding: 0.5rem;
            outline: none;
        }
        .search-box button {
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #2563eb;
        }
        .hero-title {
            text-align: center;
            margin: 2rem 0 3rem;
        }
        .hero-title h1 {
            font-size: 3rem;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero-title p {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 41, 59, 0.5);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        article h2, article h3 {
            color: #7dd3fc;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(125, 211, 252, 0.3);
        }
        article h2 {
            font-size: 2.2rem;
        }
        article h3 {
            font-size: 1.7rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #e2e8f0;
            text-align: justify;
        }
        article strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .game-feature-img {
            float: left;
            margin: 0 2rem 1rem 0;
            width: 400px;
            max-width: 100%;
            border: 3px solid #3b82f6;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            .game-feature-img {
                float: none;
                margin: 0 auto 2rem;
                width: 100%;
            }
        }
        .inline-links {
            background: rgba(59, 130, 246, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #475569;
        }
        .sidebar-widget h3 {
            color: #fbbf24;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        .rating-stars {
            color: #fbbf24;
            font-size: 1.5rem;
            margin: 1rem 0;
        }
        .rating-form select, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #475569;
            background: #1e293b;
            color: #f1f5f9;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(90deg, #10b981, #34d399);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            opacity: 0.9;
        }
        .latest-games ul {
            list-style: none;
        }
        .latest-games li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .latest-games li:before {
            content: "🎰";
            margin-right: 10px;
        }
        .highlight-box {
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(167, 139, 250, 0.2));
            border-left: 5px solid #8b5cf6;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tip {
            background: rgba(251, 191, 36, 0.1);
            padding: 1rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }
        .tip:before {
            content: "💡 PRO TIP: ";
            font-weight: bold;
            color: #fbbf24;
        }
        .footer-links {
            background: rgba(15, 23, 42, 0.9);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.03);
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(59, 130, 246, 0.1);
        }
        .web-link a {
            color: #cbd5e1;
            font-weight: 600;
            display: block;
        }
        .site-footer {
            text-align: center;
            padding: 2rem;
            background: #0f172a;
            color: #94a3b8;
            border-top: 1px solid #1e293b;
        }
        .site-footer p {
            margin: 0.5rem 0;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .hero-title h1 { font-size: 2.2rem; }
            article { padding: 1.5rem; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.5rem; }
            .search-box { margin: 1.5rem auto; }
        }
