        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #1F2937;
            background-color: #F9FAFB;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            color: #1E3A8A;
            font-weight: 700;
        }
        h2 {
            font-size: 2.2rem;
            line-height: 1.4;
            margin: 2.5rem 0 1.2rem;
            color: #1E3A8A;
            font-weight: 600;
            border-bottom: 2px solid #F97316;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.6rem;
            line-height: 1.5;
            margin: 2rem 0 1rem;
            color: #1E3A8A;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #F97316;
            font-weight: 600;
        }
        header {
            background-color: #FFFFFF;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1E3A8A;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #F97316;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            font-size: 1.05rem;
            font-weight: 500;
            color: #1F2937;
            transition: color 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:hover {
            color: #F97316;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #F97316;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            color: #10B981 !important;
            font-weight: 600;
        }
        .daman-link:hover {
            color: #059669 !important;
        }
        .daman-link::after {
            background-color: #10B981 !important;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1E3A8A;
        }
        .btn-container {
            margin: 2rem 0;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-align: center;
        }
        .btn-download {
            background-color: #10B981;
            color: #FFFFFF;
        }
        .btn-download:hover {
            background-color: #059669;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }
        .btn-login {
            background-color: #F97316;
            color: #FFFFFF;
        }
        .btn-login:hover {
            background-color: #EA580C;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }
        .main-content {
            padding: 40px 0;
        }
        .intro-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 3rem;
        }
        .intro-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 1rem 0;
        }
        .feature-list {
            list-style-type: none;
            margin: 1.5rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        .feature-item {
            background-color: #FFFFFF;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feature-item svg {
            color: #F97316;
            font-size: 1.2rem;
        }
        .gameplay-section {
            background-color: #FFFFFF;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin: 2rem 0;
        }
        .screenshot-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .screenshot {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .screenshot:hover {
            transform: scale(1.03);
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #10B981;
            padding-left: 15px;
            margin: 1.5rem 0;
            color: #4B5563;
            font-size: 1.15rem;
        }
        footer {
            background-color: #1E3A8A;
            color: #FFFFFF;
            padding: 50px 0 20px;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #F97316;
            font-weight: 600;
        }
        .footer-links {
            list-style-type: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a {
            color: #E5E7EB;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #F97316;
            padding-left: 5px;
        }
        .recommendation {
            background-color: #2D3748;
            border-radius: 10px;
            padding: 20px;
            margin: 2rem 0;
            border-left: 4px solid #10B981;
        }
        .recommendation h4 {
            color: #F97316;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #3B82F6;
            color: #9CA3AF;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #FFFFFF;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .screenshot-container {
                grid-template-columns: 1fr;
            }
            .btn-container {
                flex-direction: column;
            }
            .btn {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .gameplay-section {
                padding: 20px;
            }
        }
