        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #cbd5e1;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #fbbf24, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            text-decoration: none;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #3b82f6;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #cbd5e1;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .search-module {
            background: #1e293b;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid #334155;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #475569;
            border-radius: 8px 0 0 8px;
            background: #0f172a;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #1e293b;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border: 1px solid #334155;
        }
        .sidebar {
            background: #1e293b;
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid #334155;
        }
        h1 {
            font-size: 3.2rem;
            color: #f8fafc;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #3b82f6;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #e2e8f0;
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #10b981;
        }
        h3 {
            font-size: 1.7rem;
            color: #cbd5e1;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #94a3b8;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #d1d5db;
            background: rgba(59, 130, 246, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #3b82f6;
        }
        strong {
            color: #fbbf24;
            font-weight: 700;
        }
        em {
            color: #a5b4fc;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e40af, #1e3a8a);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(30, 64, 175, 0.4);
        }
        .tip {
            background: rgba(34, 197, 94, 0.1);
            border-left: 5px solid #22c55e;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .quote {
            font-style: italic;
            color: #cbd5e1;
            border-left: 4px solid #8b5cf6;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .game-image {
            margin: 2.5rem auto;
            max-width: 800px;
            border: 3px solid #475569;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
        }
        .interactive-section {
            background: #1e293b;
            padding: 2rem;
            border-radius: 16px;
            margin: 3rem 0;
            border: 1px solid #334155;
        }
        .interactive-section h2 {
            text-align: center;
            border: none;
            padding-left: 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #fbbf24;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #e2e8f0;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid #475569;
            background: #0f172a;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            opacity: 0.9;
        }
        .site-footer {
            background: #1e293b;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #334155;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #f8fafc;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1rem;
            background: #334155;
            margin-bottom: 0.8rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #475569;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content, .sidebar {
                padding: 1.5rem;
            }
        }
