* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #5d4037;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1190px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #d35400;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: white;
            font-size: 28px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .main-nav {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 25px;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
        }
        .main-nav a:hover {
            color: #ffd54f;
            border-bottom: 2px solid #ffd54f;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #d35400;
            font-size: 36px;
            margin: 30px 0;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #e65100;
            font-size: 28px;
            margin: 40px 0 20px;
            border-left: 4px solid #d35400;
            padding-left: 15px;
        }
        h3 {
            color: #bf360c;
            font-size: 22px;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
            text-shadow: 0.5px 0.5px 0.5px rgba(0,0,0,0.1);
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #d35400;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: all 0.3s;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #bf360c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #388e3c;
        }
        .btn-download:hover {
            background-color: #2e7d32;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 2px solid #ffe0b2;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 5px solid #ffb74d;
        }
        .stats-box p {
            margin: 10px 0;
            display: flex;
            align-items: center;
        }
        .stats-box p:before {
            content: "•";
            color: #d35400;
            font-weight: bold;
            margin-right: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #ffe0b2;
            color: #d35400;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #d35400;
            color: white;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 10px 15px 10px 0;
            text-decoration: none;
            color: #d35400;
            font-weight: 500;
            border-bottom: 1px dashed #d35400;
        }
        .game-type:hover {
            text-decoration: none;
            border-bottom: 1px solid #d35400;
        }
        footer {
            background-color: #4e342e;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            padding-right: 20px;
        }
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ffb74d;
            border-bottom: 1px solid #ffb74d;
            padding-bottom: 5px;
            display: inline-block;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s;
        }
        .footer-section a:hover {
            color: #ffb74d;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #6d4c41;
            font-size: 14px;
            color: #bdbdbd;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #d35400;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                z-index: 100;
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav li {
                margin: 10px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
                margin: 20px 0;
            }
            h2 {
                font-size: 24px;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 20px;
                margin: 25px 0 12px;
            }
            p {
                font-size: 16px;
                margin-bottom: 18px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 15px;
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            .image-container {
                margin: 20px 0;
            }
        }
