* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f5f2ea;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #8b0000;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        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-size: 1.1rem;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .hero {
            background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('archery-hero.jpg');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 50px;
        }
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffd700;
        }
        .hero-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin-bottom: 30px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #8b0000;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: 0.3s;
            margin: 0 10px;
        }
        .btn:hover {
            background-color: #b22222;
            transform: translateY(-3px);
        }
        .btn-login {
            background-color: #228b22;
        }
        .btn-login:hover {
            background-color: #32cd32;
        }
        h1, h2, h3 {
            color: #8b0000;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
        }
        h1 {
            font-size: 2.2rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
            border-bottom: none;
            color: #5d001e;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .section {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .feature-box {
            background-color: #f9f6f0;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #8b0000;
        }
        .feature-box h3 {
            color: #8b0000;
            margin-top: 0;
        }
        .screenshot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .screenshot-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            transition: 0.3s;
        }
        .screenshot-item img:hover {
            transform: scale(1.03);
        }
        .screenshot-item p {
            text-align: center;
            margin-top: 10px;
            font-weight: bold;
        }
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #8b0000;
            color: white;
        }
        tr:hover {
            background-color: #f9f6f0;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #8b0000;
            padding-left: 20px;
            margin: 30px 0;
            color: #555;
        }
        .tips-list {
            margin-left: 30px;
            margin-bottom: 30px;
        }
        .tips-list li {
            margin-bottom: 15px;
        }
        .external-link {
            color: #8b0000;
            text-decoration: none;
            font-weight: bold;
        }
        .external-link:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .game-categories a, .tags a {
            display: inline-block;
            color: #ddd;
            text-decoration: none;
            margin-right: 10px;
            margin-bottom: 10px;
            padding: 5px 10px;
            background-color: #444;
            border-radius: 4px;
        }
        .game-categories a:hover, .tags a:hover {
            background-color: #8b0000;
            color: white;
        }
        .recommendation {
            background-color: #f9f6f0;
            border-left: 4px solid #228b22;
            padding: 20px;
            margin: 30px 0;
        }
        .recommendation h3 {
            color: #228b22;
            margin-top: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #8b0000;
                padding: 20px;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .nav-links.active {
                display: flex;
            }
            .hero {
                height: 400px;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
        }
