:root {
            --primary: #D4AF37;
            --secondary: #1E3A5F;
            --accent: #C41E3A;
            --dark: #0A2342;
            --light: #F5F5DC;
            --text: #2C3E50;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text);
            background: linear-gradient(135deg, #fdf6e3 0%, #f5e6ca 100%);
            min-height: 100vh;
        }
        header {
            background: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            font-family: 'Georgia', serif;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #FFD700;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background: var(--primary);
            color: var(--dark);
        }
        .breadcrumb {
            background: var(--light);
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 2px solid var(--primary);
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .content {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid var(--primary);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: var(--dark);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #FFD700;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1rem 0;
        }
        .stars {
            color: #FFD700;
            font-size: 1.5rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }
        button[type="submit"] {
            background: var(--secondary);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background: var(--dark);
        }
        h1 {
            color: var(--secondary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-left: 1rem;
            border-left: 4px solid var(--accent);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #FFD70030 0%, #FFD70030 100%);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
            margin: 2rem 0;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.01);
        }
        .comment {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--primary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        .web-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            nav ul {
                flex-direction: column;
                display: none;
                width: 100%;
                text-align: center;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 2rem;
            }
            main {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
            .content {
                padding: 2rem 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content > * {
            animation: fadeIn 0.6s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        @media print {
            nav, .sidebar, .search-form, .rating-form, .comment-form {
                display: none;
            }
            main {
                grid-template-columns: 1fr;
            }
        }
