* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #1a1a1a;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #162447;
            padding: 15px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #e63946;
            text-decoration: none;
            text-shadow: 0 0 5px rgba(255,255,255,0.2);
            letter-spacing: 0.5px;
        }
        @media (min-width: 768px) {
            .logo {
                font-size: 1.8rem;
            }
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 20px;
        }
        .nav-links a {
            color: #f1faee;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            font-weight: 500;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #e63946;
            border-bottom: 2px solid #e63946;
        }
        .daman-link {
            color: #4cc9f0 !important;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f1faee;
            font-size: 1.8rem;
            cursor: pointer;
        }
        h1 {
            font-size: 2.2rem;
            color: #1d3557;
            margin: 30px 0 20px;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 3px solid #e63946;
        }
        @media (min-width: 768px) {
            h1 {
                font-size: 2.8rem;
                margin: 40px 0 30px;
            }
        }
        h2 {
            font-size: 1.8rem;
            color: #1d3557;
            margin: 35px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #e63946;
        }
        @media (min-width: 768px) {
            h2 {
                font-size: 2.2rem;
                margin: 45px 0 20px;
            }
        }
        h3 {
            font-size: 1.4rem;
            color: #e63946;
            margin: 25px 0 12px;
        }
        @media (min-width: 768px) {
            h3 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        @media (min-width: 768px) {
            p {
                font-size: 1.1rem;
                margin-bottom: 22px;
            }
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 15px 10px;
            background-color: #1d3557;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #e63946;
        }
        .btn-login {
            background-color: #4cc9f0;
            color: #1a1a1a;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 2px solid #1d3557;
        }
        .stats-box {
            background-color: #f1faee;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border: 1px dashed #e63946;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: white;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e63946;
        }
        .tips-list {
            margin: 20px 0;
            padding-left: 35px;
        }
        .tips-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            position: relative;
        }
        .tips-list li:before {
            content: "🎯";
            position: absolute;
            left: -30px;
        }
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 18px;
            margin: 18px 0;
            border-left: 4px solid #4cc9f0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .event-box {
            background-color: #f1faee;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-top: 3px solid #1d3557;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: #e9ecef;
            color: #1d3557;
            text-decoration: none;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            transition: all 0.3s;
            border: 1px solid #4cc9f0;
        }
        .tag:hover {
            background-color: #4cc9f0;
            color: #1d3557;
            transform: scale(1.05);
        }
        .game-types {
            margin: 25px 0;
        }
        .game-type-link {
            color: #1d3557;
            text-decoration: none;
            margin-right: 15px;
            font-size: 1.05rem;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .game-type-link:hover {
            border-bottom: 2px solid #e63946;
            color: #e63946;
        }
        footer {
            background-color: #1d3557;
            padding: 40px 0 20px;
            margin-top: 60px;
            color: #f1faee;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #457b9d;
            color: #a8dadc;
            font-size: 0.9rem;
        }
        .recommendation {
            text-align: center;
            margin: 25px 0;
            font-size: 1.05rem;
            color: #a8dadc;
        }
        .strategy-card {
            background-color: #eef4ed;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 3px solid #1d3557;
        }
        .player-quote {
            font-style: italic;
            border-left: 3px solid #e63946;
            padding-left: 15px;
            margin: 20px 0;
            color: #1d3557;
        }
        .community-section {
            margin: 30px 0;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #162447;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
                margin-left: 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
