        * {
            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: #e0e0e0;
            background: linear-gradient(135deg, #0a0f1c 0%, #1a2a3a 100%);
            background-attachment: fixed;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, rgba(77, 171, 247, 0.2), transparent);
            padding: 2px 8px;
            border-left: 4px solid #4dabf7;
        }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: rgba(10, 15, 28, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a4365;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #4dabf7, #38bdf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(77, 171, 247, 0.3);
            letter-spacing: 1px;
        }
        .my-logo a { color: transparent; }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background: rgba(77, 171, 247, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #4dabf7;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 30, 48, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2a4365;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 10px;
            border-bottom: 1px solid #2d3748;
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0aec0;
            background: rgba(26, 32, 44, 0.7);
            border-bottom: 1px solid #374151;
        }
        .breadcrumb a { color: #cbd5e0; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid #4a5568;
        }
        h1 {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
            border-bottom: 3px solid #4dabf7;
            padding-bottom: 15px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        h2 {
            font-size: 2.2rem;
            color: #90cdf4;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4a5568;
        }
        h3 {
            font-size: 1.7rem;
            color: #b3d9ff;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #c6e2ff;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        ul, ol {
            margin-bottom: 1.8rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .game-image {
            margin: 30px auto;
            max-width: 800px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            border: 2px solid #5a67d8;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 35px rgba(90, 103, 216, 0.4);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #a0aec0;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(26, 32, 44, 0.8);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #4a5568;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        @media (max-width: 992px) {
            .sidebar { position: static; }
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #90cdf4;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 1px solid #4a5568;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #4a5568;
            border-radius: 8px 0 0 8px;
            background: #2d3748;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-button {
            background: #4dabf7;
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 20px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #339af0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #e2e8f0;
            margin: 10px 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .star-rating i.active {
            color: #ffd700;
        }
        .form-input, .form-textarea {
            padding: 12px 15px;
            border: 1px solid #4a5568;
            border-radius: 8px;
            background: #2d3748;
            color: #e2e8f0;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background: linear-gradient(to right, #4dabf7, #339af0);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 14px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .form-submit:hover {
            background: linear-gradient(to right, #339af0, #228be6);
            box-shadow: 0 5px 15px rgba(51, 154, 240, 0.4);
        }
        .internal-links {
            background: rgba(45, 55, 72, 0.6);
            border-radius: 10px;
            padding: 20px;
            border-left: 5px solid #4dabf7;
        }
        .internal-links ul {
            list-style: none;
            padding-left: 0;
        }
        .internal-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #4a5568;
        }
        .internal-links li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .site-footer {
            background: rgba(10, 15, 28, 0.95);
            border-top: 2px solid #2a4365;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #90cdf4;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 12px 15px;
            background: rgba(77, 171, 247, 0.1);
            border-radius: 8px;
            margin-bottom: 10px;
            border: 1px solid rgba(77, 171, 247, 0.3);
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(77, 171, 247, 0.2);
            border-color: #4dabf7;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #374151;
            color: #a0aec0;
            font-size: 0.95rem;
        }
        .update-time {
            color: #38bdf8;
            font-weight: bold;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #4dabf7;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            z-index: 999;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #339af0;
            transform: translateY(-5px);
        }
