        * { 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, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #0d6efd; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #dc3545; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fff3cd; padding: 2px 5px; border-radius: 3px; }
        .site-header {
            background: linear-gradient(90deg, #1a237e 0%, #283593 50%, #3949ab 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo span { color: #ffc107; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            border-bottom-color: #ffc107;
            color: #ffc107;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #6c757d; }
        .breadcrumb a:hover { color: #495057; }
        .hero {
            background: url('https://images.unsplash.com/photo-1549631987-86b2c9f1db8e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 2rem;
            color: white;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 2rem;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top:0; left:0; right:0; bottom:0;
            background: rgba(0, 0, 50, 0.6);
            border-radius: 0 0 20px 20px;
        }
        .hero-content { position: relative; z-index: 1; }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
        }
        .search-box button {
            background: #dc3545;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #c82333; }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        h1 { font-size: 2.8rem; color: #1a237e; margin-bottom: 1.5rem; }
        h2 { font-size: 2.2rem; color: #283593; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 3px solid #ffc107; }
        h3 { font-size: 1.8rem; color: #3949ab; margin: 2rem 0 1rem; }
        h4 { font-size: 1.4rem; color: #5c6bc0; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .article-img {
            float: right;
            margin: 0 0 1.5rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 400px;
        }
        .links-list {
            background: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid #0d6efd;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .links-list ul { list-style: inside square; color: #495057; }
        .links-list li { margin-bottom: 0.8rem; }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: fit-content;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 {
            font-size: 1.5rem;
            background: #1a237e;
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            margin-top: 0;
        }
        .rating-widget { text-align: center; }
        .stars { font-size: 2rem; color: #ffc107; margin: 1rem 0; }
        .stars i { cursor: pointer; margin: 0 2px; }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-family: inherit;
        }
        .comment-form button {
            background: #198754;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
        }
        .comment-form button:hover { background: #157347; }
        .games-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .game-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .game-header {
            background: #1a237e;
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: bold;
        }
        .game-body { padding: 1.5rem; }
        .site-footer {
            background: #212529;
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background: #343a40;
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 6px;
            color: #dee2e6;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #495057;
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            font-size: 0.9rem;
            color: #6c757d;
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .main-nav { display: none; width: 100%; order: 3; margin-top: 1rem; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0; }
            .main-nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
            .main-nav a { display: block; padding: 1rem; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .content-grid { grid-template-columns: 1fr; }
            .article-img { float: none; margin: 0 auto 1.5rem; max-width: 100%; }
            .search-box { flex-direction: column; }
            .search-box input, .search-box button { border-radius: 50px; margin-bottom: 0.5rem; }
        }
