        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #00a8ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #00a8ff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #ffffff;
            text-shadow: 0 0 15px rgba(0, 168, 255, 0.8);
            transform: scale(1.03);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: #b0b0b0;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            color: #00a8ff;
            background: rgba(0, 168, 255, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #00a8ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 10, 15, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #b0b0b0;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #333;
            transition: all 0.3s ease;
        }
        .mobile-nav a:hover {
            color: #00a8ff;
            background: rgba(0, 168, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #888;
        }
        .breadcrumb a {
            color: #00a8ff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: rgba(20, 20, 30, 0.8);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
            border: 1px solid #333;
        }
        h1 {
            color: #00a8ff;
            font-size: 3rem;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
        }
        h2 {
            color: #4dabf7;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            color: #74c0fc;
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: #a5d8ff;
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(0, 168, 255, 0.1), transparent);
            border-left: 4px solid #00a8ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            border: 2px solid #333;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.01);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(30, 30, 45, 0.8);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #444;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 168, 255, 0.2);
        }
        .stat-card i {
            color: #00a8ff;
            font-size: 2rem;
            margin-bottom: 15px;
        }
        .search-section, .comments-section, .rating-section {
            background: rgba(25, 25, 40, 0.8);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #444;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            background: rgba(40, 40, 60, 0.8);
            border: 1px solid #555;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00a8ff;
            box-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(135deg, #00a8ff, #0097e6);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(135deg, #0097e6, #00a8ff);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .related-link {
            background: rgba(40, 40, 60, 0.8);
            padding: 10px 20px;
            border-radius: 5px;
            color: #00a8ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .related-link:hover {
            background: rgba(0, 168, 255, 0.2);
            transform: translateY(-2px);
        }
        footer {
            background: rgba(10, 10, 15, 0.95);
            border-top: 2px solid #00a8ff;
            padding: 40px 0;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        friend-link a {
            color: #00a8ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        friend-link a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            background: rgba(0, 168, 255, 0.1);
            padding: 10px 20px;
            border-radius: 5px;
            margin: 20px 0;
            display: inline-block;
            color: #00a8ff;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 20px; }
            .header-container { padding: 0 15px; }
            .stats-grid { grid-template-columns: 1fr; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .search-section, .comments-section, .rating-section {
            animation: fadeIn 0.8s ease-out;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #0c0c0c;
        }
        ::-webkit-scrollbar-thumb {
            background: #00a8ff;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #0097e6;
        }
