        * { 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: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #0a0a2a, #1a1a3a 800px);
            color: #eee;
        }
        .content-area {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .site-header {
            background: linear-gradient(135deg, #1a237e, #311b92);
            color: #FFD700;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            text-decoration: none;
            color: #FFD700;
            text-shadow: 0 0 10px #FF5722, 2px 2px 0 #000;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #FF5722;
            text-shadow: 0 0 15px #FFD700;
            transform: scale(1.05);
        }
        .my-logo span {
            color: #4CAF50;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #FFD700;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 215, 0, 0.15);
            border-color: #FFD700;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #FFD700;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #4FC3F7;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #ccc; }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        main h1 {
            font-size: 2.8rem;
            color: #FFD700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
            border-bottom: 3px solid #4CAF50;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #4FC3F7;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed rgba(79, 195, 247, 0.5);
        }
        h3 {
            color: #81C784;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h4 { color: #FFB74D; margin-top: 1.5rem; }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #FFD700;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        strong { color: #FFD700; }
        em { color: #CE93D8; }
        a {
            color: #4FC3F7;
            text-decoration: none;
            border-bottom: 1px dotted #4FC3F7;
        }
        a:hover {
            color: #FFD700;
            border-bottom-style: solid;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid #4CAF50;
            box-shadow: 0 8px 20px rgba(0,0,0,0.7);
            margin: 2rem auto;
            display: block;
            transition: transform 0.5s;
        }
        .game-image:hover { transform: scale(1.02); }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-item {
            background: rgba(33, 150, 243, 0.1);
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .link-item:hover {
            background: rgba(33, 150, 243, 0.2);
            transform: translateY(-5px);
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background: rgba(26, 35, 126, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border: 1px solid #3949AB;
        }
        .sidebar-widget h3 {
            color: #FFD700;
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 1px solid #3949AB;
            padding-bottom: 0.5rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #3949AB;
            border-radius: 6px;
            background: rgba(255,255,255,0.1);
            color: #fff;
        }
        button, .btn {
            background: linear-gradient(to right, #FF9800, #FF5722);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #FF5722, #FF9800);
            box-shadow: 0 4px 12px rgba(255, 87, 34, 0.5);
        }
        .rating {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
        }
        .rating input { display: none; }
        .rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label { color: #FFD700; }
        footer {
            background: #0a0a2a;
            color: #aaa;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #4CAF50;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-widget h4 {
            color: #4FC3F7;
            margin-bottom: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #81C784;
            border: none;
        }
        friend-link a:hover { color: #FFD700; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #222;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1a237e;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            .header-container { flex-wrap: wrap; }
            h1 { font-size: 2.2rem; }
            .link-list { grid-template-columns: 1fr; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main article > * { animation: fadeIn 0.6s ease forwards; }
