        * { 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: #f5f5f5;
            background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(90deg, #111 0%, #222 100%);
            color: #FF0;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: #FF0;
            text-decoration: none;
            text-shadow: 0 0 10px #FF0, 2px 2px 0 #000;
            letter-spacing: 2px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
            color: #FFF;
        }
        .my-logo span { color: #00F; }
        .main-nav { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li { margin-left: 25px; }
        .nav-links a {
            color: #FFF;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-links a:hover, .nav-links a.active {
            background-color: #FF0;
            color: #000;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #FF0;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #0066cc;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .search-container {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin: 20px 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-input:focus { border-color: #FF0; }
        .search-btn {
            background: linear-gradient(90deg, #FF0, #FFA500);
            color: #000;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-btn:hover { background: linear-gradient(90deg, #FFA500, #FF0); }
        .sidebar {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            align-self: start;
        }
        .sidebar h3 {
            color: #222;
            border-bottom: 3px solid #FF0;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li { margin-bottom: 12px; }
        .sidebar-links a {
            color: #333;
            text-decoration: none;
            display: block;
            padding: 10px 15px;
            background: #f9f9f9;
            border-left: 4px solid #FF0;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .sidebar-links a:hover {
            background: #FF0;
            color: #000;
            transform: translateX(5px);
        }
        .article-content {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        .article-header { margin-bottom: 40px; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #111;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .article-meta i { margin-right: 5px; color: #FF0; }
        h2, h3, h4 {
            color: #222;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h2 { font-size: 2rem; border-bottom: 2px solid #FF0; padding-bottom: 8px; }
        h3 { font-size: 1.6rem; color: #333; }
        h4 { font-size: 1.3rem; color: #555; }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #444;
            background: #fcf8e3;
            padding: 20px;
            border-left: 5px solid #FF0;
            border-radius: 4px;
            margin-bottom: 30px;
        }
        strong { color: #000; font-weight: 700; }
        .highlight {
            background-color: #fffacd;
            padding: 3px 6px;
            border-radius: 3px;
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .quote {
            font-style: italic;
            border-left: 4px solid #00F;
            padding-left: 20px;
            margin: 25px 0;
            color: #555;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            margin: 30px auto;
            border: 5px solid #FF0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            padding: 0 10px;
        }
        .content-links {
            color: #0066cc;
            text-decoration: none;
            border-bottom: 1px dotted #0066cc;
            transition: all 0.2s;
        }
        .content-links:hover {
            color: #FF0;
            border-bottom: 1px solid #FF0;
            background-color: rgba(255, 255, 0, 0.1);
        }
        .interactive-section {
            background: #f8f9fa;
            border: 2px dashed #ddd;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        .rating-form, .comment-form {
            margin-top: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            border-color: #FF0;
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.2);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #FFD700; }
        .btn {
            background: linear-gradient(90deg, #111, #333);
            color: #FF0;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn:hover {
            background: linear-gradient(90deg, #333, #111);
            color: #FFF;
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.2);
        }
        .site-footer {
            background: #222;
            color: #ccc;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 1.8rem;
            color: #FF0;
            margin-bottom: 15px;
            display: block;
        }
        .friend-link {
            display: inline-block;
            background: #333;
            color: #FF0;
            padding: 8px 15px;
            margin: 5px 10px 5px 0;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background 0.3s;
        }
        .friend-link:hover {
            background: #FF0;
            color: #000;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #222;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            }
            .nav-links.active { display: flex; }
            .nav-links li { margin: 10px 0; margin-left: 0; }
            .article-header h1 { font-size: 2rem; }
            .article-content { padding: 25px; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
        }
