* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #2c3e50;
            color: white;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f1c40f;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: white;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #f1c40f;
        }
        .daman-link {
            background-color: #f1c40f;
            color: #2c3e50 !important;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
        }
        .daman-link:hover {
            background-color: #e6b800 !important;
            color: #2c3e50 !important;
        }
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #2c3e50;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 1.5rem;
            }
        }
        .container {
            max-width: 1100px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 3px solid #f1c40f;
        }
        h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin: 40px 0 25px;
            padding-left: 15px;
            border-left: 4px solid #f1c40f;
        }
        h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 30px 0 20px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .keyword {
            font-weight: 700;
            color: #e74c3c;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }
        .login-btn {
            background-color: #e74c3c;
            color: white;
        }
        .login-btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .stats-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f9f5f0;
            border-radius: 8px;
        }
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #e74c3c;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 1rem;
            color: #34495e;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .review-card {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .review-card:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-rating {
            color: #f1c40f;
            font-size: 1.2rem;
        }
        .review-text {
            color: #555;
        }
        .strategy-list {
            list-style-type: none;
            margin: 30px 0;
        }
        .strategy-item {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            display: flex;
            gap: 15px;
        }
        .strategy-icon {
            font-size: 1.5rem;
            color: #3498db;
            margin-top: 3px;
        }
        .strategy-content h4 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .event-card:hover {
            transform: translateY(-5px);
        }
        .event-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .event-content {
            padding: 20px;
        }
        .event-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .event-date {
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .event-desc {
            color: #555;
            font-size: 1rem;
        }
        .community-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .platform-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .platform-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #3498db;
        }
        .platform-name {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .platform-members {
            color: #7f8c8d;
            margin-bottom: 15px;
        }
        .platform-link {
            display: inline-block;
            color: #3498db;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }
        .platform-link:hover {
            color: #2980b9;
        }
        .bottom-nav {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .bottom-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 30px;
        }
        .game-types h3 {
            color: #f1c40f;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .type-links a {
            color: white;
            text-decoration: none;
            background-color: #34495e;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .type-links a:hover {
            background-color: #f1c40f;
            color: #2c3e50;
        }
        .tags {
            margin-bottom: 30px;
        }
        .tags h3 {
            color: #f1c40f;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag-links a {
            color: #bdc3c7;
            text-decoration: none;
            background-color: #34495e;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .tag-links a:hover {
            background-color: #f1c40f;
            color: #2c3e50;
        }
        .recommendation {
            background-color: #34495e;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
        }
        .recommendation p {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0;
        }
        .recommendation span {
            color: #f1c40f;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            color: #bdc3c7;
            font-size: 0.95rem;
            padding-top: 20px;
            border-top: 1px solid #34495e;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
                width: 100%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .events-grid {
                grid-template-columns: 1fr;
            }
            .community-platforms {
                grid-template-columns: 1fr;
            }
        }
