        * { 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, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a { color: #4dabf7; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #339af0; text-shadow: 0 0 8px rgba(77, 171, 247, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #339af0;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            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(90deg, #ff6b6b, #4dabf7, #51cf66);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.02); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #b0b0b0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #fff;
            background: rgba(51, 154, 240, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #4dabf7;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #888;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #4dabf7; }
        .breadcrumb span { color: #4dabf7; }
        .hero {
            text-align: center;
            padding: 50px 20px;
            background: radial-gradient(circle at center, rgba(26, 26, 46, 0.9), rgba(10, 10, 20, 1));
            border-radius: 15px;
            margin: 30px 0;
            border: 1px solid #333;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 0 15px rgba(77, 171, 247, 0.7);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 25px;
            color: #ccc;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        .main-content h2 {
            color: #4dabf7;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
            margin: 40px 0 20px;
            font-size: 2rem;
        }
        .main-content h3 {
            color: #51cf66;
            margin: 30px 0 15px;
            font-size: 1.6rem;
        }
        .main-content h4 {
            color: #ffd43b;
            margin: 25px 0 12px;
            font-size: 1.3rem;
        }
        .main-content p {
            margin-bottom: 1.5em;
            color: #d0d0d0;
            text-align: justify;
        }
        .main-content strong {
            color: #ffa94d;
            font-weight: 700;
        }
        .main-content em { color: #da77f2; }
        .highlight-box {
            background: rgba(30, 41, 59, 0.7);
            border-left: 4px solid #339af0;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            border: 2px solid #444;
            margin: 25px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s;
        }
        .game-image:hover { transform: translateY(-5px); }
        .sidebar {
            background: rgba(30, 41, 59, 0.6);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            border: 1px solid #444;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h3 {
            color: #ffa94d;
            border-bottom: 2px dashed #444;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .search-form input {
            padding: 12px 15px;
            border-radius: 25px;
            border: 1px solid #555;
            background: #1e293b;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #339af0, #4dabf7);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-form button:hover { background: linear-gradient(90deg, #228be6, #339af0); }
        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-group label { color: #ccc; font-weight: 600; }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px;
            background: #1e293b;
            border: 1px solid #555;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(90deg, #51cf66, #69db7c);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover { background: linear-gradient(90deg, #40c057, #51cf66); }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating input:hover ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd43b;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .internal-links a {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #444;
            color: #b0b0b0;
        }
        .internal-links a:hover {
            background: rgba(51, 154, 240, 0.1);
            color: #4dabf7;
            border-color: #4dabf7;
        }
        .site-footer {
            background: rgba(10, 10, 20, 0.98);
            border-top: 2px solid #333;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #4dabf7;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }
        .friend-links a {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 15px;
            border-radius: 6px;
            color: #aaa;
        }
        .friend-links a:hover {
            background: rgba(51, 154, 240, 0.15);
            color: #4dabf7;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            color: #51cf66;
            font-style: italic;
            margin-top: 10px;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.5rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 20, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 15px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .main-nav.active ul {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
        }
