        * { 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: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            max-width: 1600px;
            margin: 0 auto;
            padding: 0;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo a {
            font-size: 2.5rem;
            font-weight: 900;
            text-decoration: none;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            background: linear-gradient(45deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo a:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #e9f5ff;
            font-size: 0.95rem;
            border-bottom: 1px solid #cce0ff;
        }
        .breadcrumb a {
            color: #1a2980;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb i { margin: 0 0.5rem; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        article h1 {
            font-size: 2.8rem;
            color: #1a2980;
            margin-bottom: 1rem;
            border-bottom: 4px solid #26d0ce;
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #3498db;
        }
        article h3 {
            font-size: 1.6rem;
            color: #2980b9;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #16a085;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article em {
            color: #e74c3c;
            font-style: italic;
        }
        article strong {
            color: #1a2980;
            font-weight: 800;
        }
        article .highlight-box {
            background: linear-gradient(120deg, #e3f2fd, #fce4ec);
            border-left: 5px solid #9c27b0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        article .game-image {
            width: 80%;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
        }
        article .game-image:hover {
            transform: scale(1.02);
        }
        article .caption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 0.5rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #bdc3c7;
        }
        aside {
            background-color: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        aside h3 {
            color: #1a2980;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #26d0ce;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 1rem;
            padding: 0.8rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .sidebar-links li:hover {
            background-color: #e3f2fd;
            transform: translateX(5px);
        }
        .sidebar-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            display: block;
        }
        .sidebar-links a:hover {
            color: #1a2980;
        }
        .interactive-section {
            background: linear-gradient(to right, #fdfcfb, #e2d1c3);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .interactive-section h2 {
            color: #d35400;
            border-left-color: #e67e22;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-control:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .rating-stars .star {
            color: #ecf0f1;
            transition: color 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #f1c40f;
        }
        .btn-submit {
            background: linear-gradient(90deg, #1a2980, #26d0ce);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(38, 208, 206, 0.4);
        }
        footer {
            background: linear-gradient(90deg, #2c3e50, #34495e);
            color: #ecf0f1;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #26d0ce;
            text-decoration: none;
            font-weight: 600;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .hamburger { display: block; }
            .main-nav { width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
            .main-nav.active { max-height: 500px; margin-top: 1rem; }
            .main-nav ul { flex-direction: column; gap: 0; }
            .main-nav li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
            .main-nav a { display: block; padding: 1rem; }
            article { padding: 1.5rem; }
            article h1 { font-size: 2rem; }
            .content-wrapper { padding: 1rem; }
            .footer-container { flex-direction: column; }
        }
