* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e67e22, #d35400);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .container {
            width: 92%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            display: inline-block;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            border-bottom: 2px solid white;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        h1 {
            color: #c0392b;
            margin: 40px 0 25px;
            font-size: 2.6rem;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            color: #e67e22;
            margin: 50px 0 20px;
            font-size: 2rem;
            padding-bottom: 10px;
            border-bottom: 3px solid #f39c12;
            line-height: 1.4;
        }
        h3 {
            color: #d35400;
            margin: 35px 0 15px;
            font-size: 1.55rem;
            line-height: 1.4;
            position: relative;
            padding-left: 15px;
        }
        h3::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #e67e22;
            font-size: 1.8rem;
            line-height: 0.8;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        strong {
            color: #e67e22;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 15px 15px 15px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            text-align: center;
            font-size: 1.05rem;
        }
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 25px 15px;
            background-color: #fef5e7;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: bold;
            color: #e67e22;
            margin-bottom: 10px;
        }
        .review-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.06);
            transition: box-shadow 0.3s;
        }
        .review-box:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
        }
        .reviewer-avatar {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            margin-right: 20px;
            background-color: #fef5e7;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3rem;
            color: #d35400;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .stars {
            color: #fbc02d;
            margin: 15px 0;
            font-size: 1.3rem;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fef5e7;
            color: #333;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 12px 15px 0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: white;
            border-color: #e67e22;
            color: #e67e22;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 50px 0 30px;
        }
        .type-link {
            color: #3498db;
            text-decoration: none;
            margin-right: 25px;
            font-weight: 500;
            transition: all 0.3s;
            padding: 3px 0;
            border-bottom: 2px solid transparent;
            font-size: 1.05rem;
        }
        .type-link:hover {
            color: #2980b9;
            border-bottom: 2px solid #3498db;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 35px;
            padding-right: 30px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #f39c12;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        .footer-section a {
            color: #ecf0f1;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: all 0.3s;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: #f39c12;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #bdc3c7;
        }
        .highlight {
            background-color: #fef5e7;
            padding: 3px 8px;
            border-radius: 4px;
        }
        .emoji {
            margin-right: 10px;
            font-size: 1.2em;
        }
        .quote {
            border-left: 4px solid #e67e22;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #34495e;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                width: 100%;
                background-color: #2c3e50;
                padding: 30px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 18px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding-bottom: 12px;
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 12px;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 12px 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-section {
                padding-right: 0;
            }
        }
