* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Roboto', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f1c40f;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span {
            color: white;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            padding: 5px 0;
        }
        .nav-links li a:hover {
            color: #f1c40f;
        }
        .nav-links li a.daman-link {
            color: #f1c40f;
            font-weight: 600;
        }
        .nav-links li a.daman-link:hover {
            color: #fff9c4;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 4px solid #f1c40f;
            font-weight: 800;
        }
        h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #f1c40f;
            font-weight: 700;
        }
        h3 {
            color: #34495e;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            font-weight: 600;
        }
        h4 {
            color: #34495e;
            font-size: 1.3rem;
            margin: 25px 0 15px;
            font-weight: 600;
        }
        p {
            font-size: 1.1rem;
            margin-bottom: 22px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 700;
            color: #e74c3c;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .btn {
            display: inline-block;
            padding: 16px 35px;
            background-color: #e74c3c;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            opacity: 0.95;
        }
        .btn-download {
            background-color: #27ae60;
        }
        .btn-login {
            background-color: #3498db;
        }
        .img-wrapper {
            text-align: center;
            margin: 40px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 18px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #424242;
            font-weight: 500;
        }
        .stat-value {
            font-size: 1.15rem;
            color: #e74c3c;
            font-weight: 700;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
        }
        .reviewer-city {
            font-size: 0.95rem;
            color: #616161;
        }
        .rating {
            color: #f39c12;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .review-text {
            font-size: 1.05rem;
            color: #424242;
            line-height: 1.7;
        }
        .tips-list {
            margin-left: 35px;
            margin-bottom: 35px;
        }
        .tips-list li {
            font-size: 1.1rem;
            margin-bottom: 18px;
            color: #2d3436;
        }
        .tips-list li:before {
            content: '🎯';
            margin-right: 10px;
            color: #3498db;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            border-top: 5px solid #3498db;
        }
        .event-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .event-desc {
            font-size: 1.05rem;
            color: #424242;
            line-height: 1.7;
        }
        .tags-section {
            margin: 50px 0;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .tag {
            display: inline-block;
            padding: 10px 20px;
            background-color: #ebf5fb;
            color: #2980b9;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #2980b9;
            color: white;
        }
        .categories-section {
            margin: 40px 0;
        }
        .categories-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .category {
            display: inline-block;
            padding: 12px 22px;
            background-color: #f4ecf7;
            color: #7d3c98;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .category:hover {
            background-color: #7d3c98;
            color: white;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .comparison-table th,
        .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        .comparison-table th {
            background-color: #2c3e50;
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 25px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 1.4rem;
            color: #f1c40f;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1c40f;
            display: inline-block;
        }
        .footer-col p {
            font-size: 1.05rem;
            margin-bottom: 20px;
            text-align: left;
            color: #e0e0e0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links li a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .footer-links li a:hover {
            color: #f1c40f;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #34495e;
            font-size: 0.95rem;
            color: #bdbdbd;
        }
        .daman-promo {
            font-size: 1.1rem;
            font-weight: 500;
            color: #f1c40f;
            margin-top: 20px;
            text-align: center;
        }
        .daman-promo a {
            color: #f1c40f;
            font-weight: 600;
            text-decoration: underline;
        }
        .daman-promo a:hover {
            color: #fff9c4;
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 1.5rem;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #2c3e50;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                display: none;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                text-align: center;
                padding: 14px;
                font-size: 1.1rem;
            }
            .reviews-grid, .events-grid {
                grid-template-columns: 1fr;
            }
            .stats-box {
                padding: 20px;
            }
            .stat-item {
                padding: 15px 0;
            }
            .stat-label, .stat-value {
                font-size: 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .comparison-table {
                font-size: 0.9rem;
            }
            .comparison-table th,
            .comparison-table td {
                padding: 10px;
            }
        }
