        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #1a1a2e;
            background-color: #f0f2f5;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .navbar {
            background: linear-gradient(135deg, #16213e, #0f3460, #e94560);
            padding: 18px 30px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 2.1rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 0.8px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        .logo span {
            color: #ffd166;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 14px;
            border-radius: 8px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .daman-link {
            background-color: #ffd166;
            color: #1a1a2e !important;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        .daman-link:hover {
            background-color: #ffbe0b !important;
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .menu-toggle {
            display: none;
            font-size: 2.2rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .btn {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }
        .btn-download {
            background-color: #2ecb71;
            color: #ffffff;
            margin-right: 20px;
            box-shadow: 0 4px 8px rgba(46,203,113,0.3);
        }
        .btn-download:hover {
            background-color: #27ae60;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(46,203,113,0.4);
        }
        .btn-login {
            background-color: #3498db;
            color: #ffffff;
            box-shadow: 0 4px 8px rgba(52,152,219,0.3);
        }
        .btn-login:hover {
            background-color: #2980b9;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(52,152,219,0.4);
        }
        .hero {
            max-width: 1500px;
            margin: 60px auto 70px;
            padding: 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.8rem;
            color: #e94560;
            margin-bottom: 30px;
            line-height: 1.5;
            text-shadow: 0 3px 8px rgba(0,0,0,0.15);
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        .hero h1 span {
            color: #0f3460;
        }
        .hero p {
            font-size: 1.35rem;
            color: #3a3a5a;
            max-width: 1050px;
            margin: 0 auto 40px;
            line-height: 1.9;
        }
        .hero-buttons {
            margin-top: 45px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero-image {
            margin-top: 55px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
            border: 5px solid #ffffff;
        }
        .hero-image img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
        }
        .hero-image img:hover {
            transform: scale(1.03);
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 70px;
        }
        .section {
            background-color: #ffffff;
            border-radius: 22px;
            padding: 50px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 8px solid #e94560;
        }
        .section:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .section h2 {
            font-size: 2.5rem;
            color: #0f3460;
            margin-bottom: 35px;
            padding-bottom: 20px;
            border-bottom: 5px solid #e94560;
            display: inline-block;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        .section h3 {
            font-size: 1.9rem;
            color: #16213e;
            margin: 45px 0 25px;
            padding-left: 20px;
            border-left: 5px solid #ffd166;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        .section h4 {
            font-size: 1.5rem;
            color: #e94560;
            margin: 35px 0 20px;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        .section p {
            margin-bottom: 32px;
            font-size: 1.2rem;
            color: #2d2d44;
            line-height: 1.9;
            text-align: justify;
        }
        .section ul {
            margin-left: 40px;
            margin-bottom: 35px;
        }
        .section li {
            margin-bottom: 20px;
            font-size: 1.18rem;
            color: #2d2d44;
            line-height: 1.8;
            list-style-type: disc;
            padding-left: 10px;
        }
        .section li::marker {
            color: #e94560;
            font-size: 1.5rem;
        }
        .section ol {
            margin-left: 40px;
            margin-bottom: 35px;
        }
        .section ol li {
            list-style-type: decimal;
        }
        .highlight {
            background-color: #fef7fb;
            padding: 30px;
            border-radius: 15px;
            margin: 45px 0;
            border-left: 8px solid #ffd166;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .highlight p {
            font-weight: 600;
            color: #3a3a5a;
            margin-bottom: 0;
            font-size: 1.25rem;
            line-height: 1.9;
        }
        .highlight p strong {
            color: #e94560;
        }
        .highlight p em {
            color: #0f3460;
            font-style: italic;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 50px 0;
        }
        .feature-card {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 35px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid #3498db;
        }
        .feature-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.12);
        }
        .feature-card i {
            font-size: 3.5rem;
            color: #e94560;
            margin-bottom: 25px;
        }
        .feature-card h4 {
            font-size: 1.55rem;
            color: #0f3460;
            margin-bottom: 22px;
        }
        .feature-card p {
            font-size: 1.1rem;
            color: #3a3a5a;
            margin-bottom: 0;
            text-align: center;
        }
        .screenshot-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .screenshot {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 22px rgba(0,0,0,0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid #f0f0f0;
        }
        .screenshot:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
        }
        .screenshot img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #0f3460, #16213e);
            color: #ffffff;
            border-radius: 15px;
            padding: 35px;
            text-align: center;
            box-shadow: 0 8px 22px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            border-bottom: 5px solid #ffd166;
        }
        .stat-card:hover {
            transform: translateY(-6px);
        }
        .stat-card .number {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            font-family: 'Arial Black', Gadget, sans-serif;
            color: #ffd166;
        }
        .stat-card .label {
            font-size: 1.25rem;
            opacity: 0.95;
            text-transform: capitalize;
        }
        .testimonials {
            margin: 50px 0;
        }
        .testimonial-card {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 35px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            font-size: 6rem;
            color: #e94560;
            position: absolute;
            top: -25px;
            left: 30px;
            opacity: 0.2;
            font-family: 'Georgia', serif;
        }
        .testimonial-text {
            font-size: 1.25rem;
            color: #2d2d44;
            margin-bottom: 30px;
            padding-left: 30px;
            line-height: 1.9;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-left: 30px;
        }
        .author-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #3498db;
        }
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .author-info h4 {
            color: #0f3460;
            font-size: 1.4rem;
            margin-bottom: 8px;
        }
        .author-info p {
            color: #7f8c8d;
            font-size: 1.15rem;
            margin-bottom: 0;
        }
        .tabs {
            display: flex;
            border-bottom: 3px solid #e0e0e0;
            margin: 45px 0 35px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 15px 30px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            color: #7f8c8d;
            transition: all 0.3s ease;
            border-bottom: 4px solid transparent;
            white-space: nowrap;
        }
        .tab.active {
            color: #e94560;
            border-bottom: 4px solid #e94560;
        }
        .tab:hover {
            color: #0f3460;
            background-color: #f5f5f5;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .lore-timeline {
            position: relative;
            margin: 50px 0;
            padding-left: 40px;
        }
        .lore-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #e94560, #3498db);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -48px;
            top: 10px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #ffd166;
            border: 4px solid #0f3460;
        }
        .timeline-item h4 {
            margin-bottom: 15px;
            color: #0f3460;
        }
        .timeline-item p {
            margin-bottom: 0;
        }
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .weapon-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-left: 5px solid #3498db;
        }
        .weapon-card h4 {
            color: #0f3460;
            margin-bottom: 15px;
        }
        .weapon-stats {
            margin-bottom: 15px;
        }
        .stat-bar {
            margin-bottom: 10px;
        }
        .stat-bar label {
            display: flex;
            justify-content: space-between;
            font-weight: 500;
            margin-bottom: 5px;
            color: #3a3a5a;
        }
        .progress-bar {
            height: 8px;
            background-color: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
        }
        .progress {
            height: 100%;
            background-color: #e94560;
            border-radius: 4px;
        }
        .footer {
            background-color: #16213e;
            color: #ffffff;
            padding: 80px 30px 50px;
            margin-top: 100px;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 70px;
        }
        .footer-section h3 {
            font-size: 1.8rem;
            margin-bottom: 35px;
            color: #ffd166;
            position: relative;
            padding-bottom: 20px;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: #ffd166;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            display: inline-block;
        }
        .footer-links a:hover {
            color: #ffd166;
            padding-left: 10px;
        }
        .game-categories, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        .category-link, .tag-link {
            background-color: rgba(255,255,255,0.1);
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }
        .category-link:hover, .tag-link:hover {
            background-color: #ffd166;
            color: #16213e;
            transform: translateY(-3px);
        }
        .recommendation {
            background-color: rgba(255,209,102,0.15);
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
            border: 2px solid #ffd166;
        }
        .recommendation h4 {
            color: #ffd166;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .recommendation p {
            color: #e0e0e0;
            margin-bottom: 0;
            line-height: 1.9;
            font-size: 1.15rem;
        }
        .copyright {
            max-width: 1400px;
            margin: 60px auto 0;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            text-align: center;
            font-size: 1.1rem;
            color: #b0b0b0;
            line-height: 1.9;
        }
        .copyright-links {
            margin-top: 20px;
        }
        .copyright-links a {
            color: #b0b0b0;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        .copyright-links a:hover {
            color: #ffd166;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.3rem;
            }
            .section h2 {
                font-size: 2.3rem;
            }
            .screenshot-container {
                grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 30px;
            }
            .hero h1 {
                font-size: 2.9rem;
            }
            .hero p {
                font-size: 1.25rem;
            }
            .section {
                padding: 45px;
            }
            .section h3 {
                font-size: 1.75rem;
            }
            .feature-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #16213e, #0f3460);
                padding: 35px;
                gap: 25px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                border-radius: 0 0 20px 20px;
            }
            .nav-links.active {
                display: flex;
                animation: slideDown 0.4s ease;
            }
            @keyframes slideDown {
                from { transform: translateY(-30px); opacity: 0; }
                to { transform: translateY(0); opacity: 1; }
            }
            .menu-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                margin-right: 0;
            }
            .section {
                padding: 40px 25px;
            }
            .section h2 {
                font-size: 2.1rem;
            }
            .section h3 {
                font-size: 1.6rem;
            }
            .section p {
                font-size: 1.1rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .screenshot-container {
                grid-template-columns: 1fr;
            }
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonial-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 15px 20px;
            }
            .logo {
                font-size: 1.8rem;
            }
            .hero {
                padding: 0 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .container {
                padding: 0 20px;
            }
            .section {
                padding: 35px 20px;
            }
            .stats {
                grid-template-columns: 1fr;
            }
            .footer-container {
                gap: 50px;
            }
            .copyright-links a {
                display: block;
                margin: 10px 0;
            }
            .lore-timeline {
                padding-left: 30px;
            }
            .timeline-item::before {
                left: -38px;
            }
        }
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #3498db;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e94560;
        }
        html {
            scroll-behavior: smooth;
        }
        img {
            loading: lazy;
        }
