        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fdf6f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffeb3b;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .daman-link {
            background-color: #ffeb3b;
            color: #333 !important;
            font-weight: 600;
        }
        .daman-link:hover {
            background-color: #fff350 !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;
            margin-left: 15px;
        }
        .btn-download {
            background-color: #4caf50;
            color: white;
        }
        .btn-download:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(76,175,80,0.3);
        }
        .btn-login {
            background-color: #2196f3;
            color: white;
        }
        .btn-login:hover {
            background-color: #1976d2;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(33,150,243,0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        .main-content {
            padding: 40px 0;
        }
        h1 {
            font-size: 2.8rem;
            color: #d84315;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border-bottom: 3px solid #ffb74d;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #e64a19;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #ff9800;
        }
        h3 {
            font-size: 1.7rem;
            color: #f57c00;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #ff8f00;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            padding: 0 5px;
        }
        strong {
            color: #d32f2f;
        }
        .intro-section {
            background-color: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .feature-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .feature-card h3 {
            color: #e64a19;
            margin-bottom: 15px;
            text-align: center;
        }
        .feature-card p {
            text-align: center;
        }
        .feature-icon {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 15px;
            color: #ff9800;
        }
        .screenshot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .screenshot {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .screenshot img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .screenshot img:hover {
            transform: scale(1.03);
        }
        .quote {
            font-style: italic;
            color: #666;
            border-left: 3px solid #ff9800;
            padding-left: 20px;
            margin: 30px 0;
            font-size: 1.1rem;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
            background-color: #fff8e1;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .stat-item {
            text-align: center;
            margin: 15px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #e64a19;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #555;
        }
        footer {
            background-color: #2d3436;
            color: #fff;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: #ffb74d;
            margin-bottom: 20px;
            font-size: 1.5rem;
            border-bottom: 2px solid #ff9800;
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffb74d;
            padding-left: 5px;
        }
        .recommended {
            background-color: #34495e;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .recommended h4 {
            color: #ffeb3b;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #bbb;
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff7e5f, #feb47b);
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .btn {
                margin: 10px auto;
                display: block;
                width: 80%;
                text-align: center;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .screenshot-gallery {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            .intro-section {
                padding: 20px;
            }
            .stats {
                padding: 20px 10px;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
