        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f5ff;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff2e63, #08d9d6);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffd166;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .daman-link {
            color: #ffd166 !important;
            font-weight: 600;
            border: 1px solid #ffd166;
        }
        .daman-link:hover {
            background-color: rgba(255,209,102,0.2) !important;
        }
        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 1rem;
        }
        .btn-download {
            background-color: #ffd166;
            color: #2d3436;
            margin-right: 10px;
        }
        .btn-download:hover {
            background-color: #ffbe0b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,190,11,0.3);
        }
        .btn-login {
            background-color: white;
            color: #ff2e63;
        }
        .btn-login:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,46,99,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 2.5rem;
            color: #2d3436;
            text-align: center;
            margin-bottom: 30px;
            color: #ff2e63;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            color: #08d9d6;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f1f1;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d3436;
            margin: 30px 0 15px;
            color: #3a0ca3;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #4a4a4a;
            line-height: 1.9;
        }
        .intro {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        .intro p {
            font-size: 1.1rem;
            color: #333;
        }
        .highlight {
            font-weight: 600;
            color: #ff2e63;
        }
        .glow-text {
            color: #7209b7;
            text-shadow: 0 0 10px rgba(114,9,183,0.3);
        }
        .cultural-note {
            background-color: #fff5e6;
            border-left: 4px solid #ffd166;
            padding: 15px 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .cultural-note p {
            margin-bottom: 0;
            font-style: italic;
            color: #4a3f35;
        }
        .game-feature {
            display: flex;
            gap: 20px;
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            align-items: center;
        }
        .game-feature-icon {
            font-size: 2.5rem;
            color: #08d9d6;
            min-width: 60px;
            text-align: center;
        }
        .game-feature-content h3 {
            margin-top: 0;
        }
        .testimonial {
            background-color: #f0f8fb;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #e3f2fd;
        }
        .testimonial p {
            font-style: italic;
            color: #2d3436;
            margin-bottom: 15px;
        }
        .testimonial-author {
            font-weight: 600;
            color: #3a0ca3;
            text-align: right;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .grid-card {
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .grid-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .grid-card h3 {
            color: #ff2e63;
            margin-top: 0;
        }
        .update-list {
            list-style: none;
        }
        .update-list li {
            background-color: white;
            padding: 15px 20px;
            margin-bottom: 10px;
            border-radius: 10px;
            border-left: 4px solid #08d9d6;
        }
        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: #f1f1f1;
            border-radius: 30px;
            margin: 0 8px 8px 0;
            text-decoration: none;
            color: #3a0ca3;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #3a0ca3;
            color: white;
        }
        .category-link {
            display: inline-block;
            padding: 10px 20px;
            background-color: #f8f9fa;
            border-radius: 5px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            color: #2d3436;
            font-weight: 500;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            background-color: #08d9d6;
            color: white;
            border-color: #08d9d6;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd166;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-section p {
            color: #adb5bd;
            margin-bottom: 15px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd166;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff2e63, #08d9d6);
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-buttons {
                display: flex;
                gap: 10px;
            }
            .btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .game-feature {
                flex-direction: column;
                text-align: center;
            }
            .game-feature-icon {
                margin-bottom: 15px;
            }
        }
        @media (max-width: 600px) {
            .logo {
                font-size: 1.5rem;
            }
            .header-buttons {
                display: none;
            }
            .mobile-buttons {
                display: flex;
                gap: 10px;
                justify-content: center;
                margin-top: 15px;
            }
            .intro {
                padding: 20px;
            }
            .grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
