        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0a2e6b;
            --secondary: #c8102e;
            --accent: #ffc72c;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: var(--dark);
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .flex { display: flex; }
        .grid { display: grid; }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: var(--primary);
            color: white;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .section-padding { padding: 60px 0; }
        .text-center { text-align: center; }
        .highlight { color: var(--secondary); font-weight: bold; }
        header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .top-bar {
            background: var(--primary);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        .top-bar .container {
            justify-content: space-between;
            align-items: center;
        }
        .last-updated { font-style: italic; }
        .social-icons a {
            margin-left: 15px;
            font-size: 1.1rem;
        }
        .social-icons a:hover { color: var(--accent); }
        .main-header .container {
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        .my-logo span:first-child { color: var(--secondary); }
        .my-logo span:last-child { color: var(--accent); }
        .my-logo:hover { opacity: 0.9; }
        nav ul { gap: 30px; }
        nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        nav a:hover:after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a:hover { color: var(--secondary); }
        .breadcrumb span { margin: 0 8px; color: var(--gray); }
        .hero {
            background: linear-gradient(rgba(10, 46, 107, 0.85), rgba(200, 16, 46, 0.8)), url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 20px;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .search-box h2 { margin-bottom: 20px; color: var(--primary); }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        .search-form button { background: var(--secondary); }
        .content-wrapper {
            grid-template-columns: 1fr 350px;
            gap: 40px;
            align-items: start;
        }
        article { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
        h1 { font-size: 2.8rem; color: var(--primary); margin-bottom: 25px; line-height: 1.3; }
        h2 { font-size: 2rem; color: var(--primary); margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 3px solid var(--accent); }
        h3 { font-size: 1.6rem; color: var(--secondary); margin: 30px 0 15px; }
        h4 { font-size: 1.3rem; color: #555; margin: 25px 0 10px; }
        p { margin-bottom: 22px; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; font-weight: 500; color: #444; line-height: 1.8; }
        b, strong { color: var(--primary); }
        .article-img {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            max-width: 900px;
        }
        .caption { text-align: center; font-style: italic; color: var(--gray); margin-top: 10px; font-size: 0.95rem; }
        .stats-box {
            background: #f0f7ff;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .related-links {
            background: #fff9e6;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .related-links h4 { color: #b8860b; }
        .related-links ul { margin-top: 15px; }
        .related-links li { margin-bottom: 10px; }
        .related-links a { color: #0a2e6b; text-decoration: underline; }
        .related-links a:hover { color: var(--secondary); }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.04);
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i { color: var(--accent); }
        .game-list li {
            padding: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }
        .game-list li:last-child { border-bottom: none; }
        .score { font-weight: bold; color: var(--secondary); }
        .interactive-section { margin-top: 60px; }
        .rating-box, .comment-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.04);
            margin-bottom: 30px;
        }
        .stars { margin: 15px 0; font-size: 1.8rem; color: #ddd; cursor: pointer; }
        .stars i { margin-right: 5px; transition: var(--transition); }
        .stars i:hover, .stars i.active { color: #ffc107; }
        .rating-form, .comment-form { margin-top: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .submit-btn { background: var(--primary); width: 100%; padding: 14px; font-size: 1.1rem; }
        footer {
            background: var(--dark);
            color: #ddd;
            padding-top: 50px;
            margin-top: 60px;
        }
        .footer-content {
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-widget h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-widget h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--accent); padding-left: 5px; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link:hover { background: rgba(255,255,255,0.1); color: var(--accent); }
        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: repeat(2, 1fr); }
            h1 { font-size: 2.4rem; }
            .hero h1 { font-size: 2.5rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                position: fixed;
                top: 120px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 30px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                transition: left 0.5s ease;
                z-index: 999;
            }
            nav ul.active { left: 0; }
            .search-form { flex-direction: column; }
            .search-form button { width: 100%; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 576px) {
            .section-padding { padding: 40px 0; }
            article { padding: 25px; }
            .hero { padding: 50px 20px; }
            .hero h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .top-bar .container { flex-direction: column; gap: 10px; }
        }
