* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Trebuchet MS', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d3436;
            background-color: #f5f6fa;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #0984e3;
            padding: 18px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #ffeaa7;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffeaa7;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ffeaa7;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
        }
        #mobile-menu {
            display: none;
        }
        h1 {
            font-size: 40px;
            color: #0984e3;
            margin: 40px 0 30px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            font-size: 30px;
            color: #2d3436;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #fdcb6e;
            position: relative;
        }
        h2::before {
            content: '🏙️';
            margin-right: 10px;
        }
        h3 {
            font-size: 24px;
            color: #d63031;
            margin: 35px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #d63031;
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            color: #2d3436;
        }
        .highlight {
            font-weight: bold;
            color: #0984e3;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #00b894;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 18px;
            margin: 15px 15px 25px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,184,148,0.2);
        }
        .btn:hover {
            background-color: #009975;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,184,148,0.3);
        }
        .btn-login {
            background-color: #6c5ce7;
            box-shadow: 0 4px 6px rgba(108,92,231,0.2);
        }
        .btn-login:hover {
            background-color: #5a4bcf;
            box-shadow: 0 6px 8px rgba(108,92,231,0.3);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        img {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .image-container:hover img {
            transform: scale(1.02);
        }
        .review-box {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
            margin: 25px 0;
            border-top: 5px solid #0984e3;
        }
        .reviewer {
            font-style: italic;
            color: #636e72;
            margin-top: 15px;
            font-size: 17px;
        }
        .strategy-list {
            margin-left: 40px;
            margin-bottom: 30px;
        }
        .strategy-list li {
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-left: 10px;
        }
        .strategy-list li::before {
            content: '✅';
            position: absolute;
            left: -30px;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
            border-right: 5px solid #fdcb6e;
        }
        .game-tags {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #dfe6e9;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            color: #2d3436;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #b2bec3;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 40px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 25px;
            text-decoration: none;
            color: #0984e3;
            font-weight: bold;
            font-size: 18px;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #d63031;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 0 30px;
            margin-top: 70px;
        }
        .footer-content {
            margin-bottom: 40px;
        }
        .footer-content p {
            color: #dfe6e9;
            font-size: 17px;
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #636e72;
            font-size: 15px;
            color: #b2bec3;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #0984e3;
                padding: 25px;
                gap: 20px;
                z-index: 100;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .mobile-menu-btn {
                display: block;
            }
            #mobile-menu:checked ~ .nav-links {
                display: flex;
            }
            h1 {
                font-size: 32px;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            p {
                font-size: 17px;
                margin-bottom: 20px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 17px;
                margin: 10px 10px 20px 0;
                display: block;
                width: 100%;
                text-align: center;
            }
            .strategy-list {
                margin-left: 30px;
            }
            .strategy-list li {
                font-size: 17px;
            }
        }
