* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header-wrapper {
            background-color: #b71540;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .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: #feca57;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #feca57;
            border-bottom: 2px solid #feca57;
        }
        .daman-link {
            background-color: #0abde3;
            padding: 6px 18px;
            border-radius: 25px;
            font-weight: bold;
        }
        .daman-link:hover {
            background-color: #1dd1a1;
            color: white;
            border-bottom: none;
            transform: translateY(-2px);
        }
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #b71540;
            font-size: 2.6rem;
            text-align: center;
            margin: 35px 0;
            padding-bottom: 18px;
            border-bottom: 3px solid #feca57;
        }
        h2 {
            color: #b71540;
            font-size: 2.1rem;
            margin: 45px 0 22px;
            padding-left: 18px;
            border-left: 4px solid #0abde3;
        }
        h3 {
            color: #b71540;
            font-size: 1.7rem;
            margin: 35px 0 18px;
            position: relative;
            padding-bottom: 8px;
        }
        h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #feca57;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b71540;
            text-decoration: underline;
            text-decoration-style: dotted;
        }
        .telangana-note {
            background-color: #ffeaa7;
            border-left: 4px solid #feca57;
            padding: 18px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 2px solid #dfe6e9;
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .btn-section {
            text-align: center;
            margin: 60px 0;
        }
        .game-btn {
            display: inline-block;
            padding: 16px 38px;
            margin: 0 18px;
            font-size: 1.25rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.3);
        }
        .login-btn {
            background-color: #2980b9;
            color: white;
        }
        .login-btn:hover {
            background-color: #1e6091;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.3);
        }
        .stats-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 45px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e9ecef;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #b71540;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 1.15rem;
            color: #2d3436;
        }
        .localization-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 35px 0;
        }
        .local-tab {
            background-color: #ffeaa7;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: bold;
            color: #b71540;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .local-tab:hover {
            background-color: #feca57;
            transform: translateY(-3px);
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 35px;
            margin: 45px 0;
        }
        .review-card {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.1);
            border-top: 4px solid #0abde3;
        }
        .reviewer-name {
            font-weight: bold;
            color: #b71540;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        .reviewer-name::before {
            content: "👤";
            margin-right: 12px;
            font-size: 1.3rem;
        }
        .review-rating {
            color: #feca57;
            margin-bottom: 18px;
            font-size: 1.2rem;
        }
        .tips-container {
            background-color: #e3f2fd;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        .tip-item {
            margin-bottom: 25px;
            padding-left: 15px;
            border-left: 3px solid #0abde3;
        }
        .tip-title {
            font-weight: bold;
            color: #2980b9;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 35px 0;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .event-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .event-details {
            padding: 20px;
        }
        .event-date {
            color: #0abde3;
            font-weight: bold;
            margin-bottom: 8px;
        }
        .event-title {
            color: #b71540;
            font-weight: bold;
            margin-bottom: 10px;
        }
        footer {
            background-color: #b71540;
            color: white;
            padding: 60px 0 30px;
            margin-top: 90px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 45px;
            margin-bottom: 50px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #feca57;
            padding-bottom: 12px;
            border-bottom: 2px solid #0abde3;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #f8f9fa;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #feca57;
            padding-left: 8px;
        }
        .game-types {
            margin-top: 25px;
        }
        .game-type-link {
            display: inline-block;
            color: #f8f9fa;
            margin-right: 18px;
            margin-bottom: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .game-type-link:hover {
            color: #feca57;
            text-decoration: underline;
        }
        .tags-container {
            margin-top: 25px;
        }
        .tag-link {
            display: inline-block;
            background-color: #c0392b;
            color: white;
            padding: 10px 18px;
            border-radius: 25px;
            margin-right: 12px;
            margin-bottom: 12px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #0abde3;
            transform: translateY(-3px);
        }
        .daman-recommendation {
            background-color: #c0392b;
            padding: 25px;
            border-radius: 10px;
            margin-top: 35px;
            text-align: center;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            margin-top: 35px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .mobile-menu-toggle {
                display: block;
                position: absolute;
                top: 22px;
                right: 22px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 25px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
                margin-left: 0;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            .game-btn {
                display: block;
                width: 85%;
                margin: 20px auto;
                text-align: center;
                padding: 15px 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .review-container {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .events-grid {
                grid-template-columns: 1fr;
            }
        }
