* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #e63946;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .logo span {
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 35px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        nav ul li a:hover {
            color: #ffd700;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.9rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 45px 20px;
        }
        h1 {
            color: #1a365d;
            font-size: 2.6rem;
            margin-bottom: 35px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 4px solid #e63946;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1a365d;
            font-size: 1.9rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #e63946;
        }
        h3 {
            color: #1a365d;
            font-size: 1.5rem;
            margin: 35px 0 20px;
            padding-left: 12px;
            border-left: 3px solid #457b9d;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 50px 0;
            justify-content: center;
        }
        .btn {
            padding: 18px 40px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1.2rem;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #4cc9f0;
            color: #1a365d;
        }
        .login-btn {
            background-color: #1a365d;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
            border: 6px solid white;
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-top: 6px solid #1a365d;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f1faee;
            border-radius: 10px;
            transition: transform 0.4s ease;
            border: 1px solid #e6e6e6;
        }
        .stat-item:hover {
            transform: translateY(-7px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #1a365d;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #457b9d;
        }
        .tag-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f1faee;
            color: #1a365d;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid #457b9d;
        }
        .tag:hover {
            background-color: #1a365d;
            color: white;
        }
        .game-types {
            margin: 50px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 15px;
        }
        .game-type a {
            color: #1a365d;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-bottom: 3px solid #4cc9f0;
            transition: all 0.3s ease;
            padding-bottom: 3px;
        }
        .game-type a:hover {
            color: #e63946;
            border-bottom-color: #e63946;
        }
        footer {
            background-color: #1a365d;
            color: white;
            padding: 50px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffd700;
            position: relative;
            padding-bottom: 12px;
        }
        .footer-section h4:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
        }
        .footer-section ul {
            list-style-type: none;
        }
        .footer-section ul li {
            margin-bottom: 15px;
        }
        .footer-section ul li a {
            color: #f1faee;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.05rem;
        }
        .footer-section ul li a:before {
            content: '✓';
            font-size: 1.1rem;
            opacity: 0.8;
            color: #4cc9f0;
        }
        .footer-section ul li a:hover {
            color: #ffd700;
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1.05rem;
            opacity: 0.9;
            grid-column: 1 / -1;
        }
        blockquote {
            border-left: 5px solid #4cc9f0;
            padding-left: 20px;
            margin: 30px 0;
            color: #1a365d;
            font-style: italic;
            background-color: #f1faee;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            font-size: 1.1rem;
        }
        .tips-box {
            background-color: #fff1e6;
            border-left: 5px solid #fb8500;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-box h4 {
            color: #e63946;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }
        .feature-card {
            display: flex;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .feature-image {
            flex: 1;
            min-width: 300px;
        }
        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .feature-details {
            flex: 2;
            padding: 30px;
            min-width: 350px;
        }
        .feature-title {
            color: #1a365d;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        .feature-description {
            color: #2d2d2d;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .event-list {
            display: flex;
            gap: 25px;
            margin: 40px 0;
            overflow-x: auto;
            padding-bottom: 15px;
            scrollbar-width: thin;
            scrollbar-color: #4cc9f0 #f1faee;
        }
        .event-list::-webkit-scrollbar {
            width: 8px;
        }
        .event-list::-webkit-scrollbar-track {
            background: #f1faee;
            border-radius: 10px;
        }
        .event-list::-webkit-scrollbar-thumb {
            background-color: #4cc9f0;
            border-radius: 10px;
        }
        .event-item {
            min-width: 300px;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        .event-item:hover {
            transform: translateY(-5px);
        }
        .event-image {
            height: 180px;
            overflow: hidden;
        }
        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .event-item:hover .event-image img {
            transform: scale(1.08);
        }
        .event-details {
            padding: 20px;
        }
        .event-title {
            font-weight: bold;
            margin-bottom: 8px;
            color: #1a365d;
            font-size: 1.2rem;
        }
        .event-date {
            font-size: 1rem;
            color: #
