        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.9;
            color: #2d2d2d;
            background-color: #fdf8f3;
            padding-bottom: 60px;
            letter-spacing: 0.3px;
        }
        :root {
            --primary: #e63946; 
            --secondary: #ffb703; 
            --tertiary: #2a9d8f; 
            --accent: #8b5cf6; 
            --light: #f8f9fa; 
            --dark: #264653; 
            --shadow: 0 6px 12px rgba(0,0,0,0.08);
            --border-radius: 12px;
            --spacing-sm: 8px;
            --spacing-md: 16px;
            --spacing-lg: 24px;
            --spacing-xl: 32px;
        }
        header {
            background: linear-gradient(120deg, var(--primary), var(--accent));
            color: white;
            padding: 18px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        header.scrolled {
            padding: 12px 0;
            background: linear-gradient(120deg, #d62828, #7c3aed);
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--secondary);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.25);
            margin-right: 20px;
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.03);
        }
        .logo span {
            color: white;
            font-style: italic;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 7px 12px;
            border-radius: 6px;
            position: relative;
        }
        .nav-links li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-links li a:hover {
            background-color: rgba(255,255,255,0.15);
            color: var(--secondary);
        }
        .nav-links li a:hover:after {
            width: 100%;
        }
        .daman-link {
            background-color: var(--secondary);
            color: var(--dark) !important;
            font-weight: 600;
            padding: 10px 18px !important;
            border-radius: 30px;
            box-shadow: 0 4px 8px rgba(255, 183, 3, 0.3);
        }
        .daman-link:hover {
            background-color: #ffc135 !important;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 183, 3, 0.4);
        }
        .daman-link:after {
            display: none;
        }
        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 17px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: var(--tertiary);
            color: white;
            margin-right: 12px;
        }
        .btn-download:hover {
            background-color: #21867a;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(42, 157, 143, 0.35);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--dark);
        }
        .btn-login:hover {
            background-color: #ffc135;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 183, 3, 0.35);
        }
        .btn-group {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
        }
        .hamburger:hover {
            color: var(--secondary);
            transform: rotate(90deg);
        }
        main {
            padding: 50px 0;
        }
        .intro-section {
            text-align: center;
            margin-bottom: 80px;
            padding: 40px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary);
        }
        h1 {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 25px;
            line-height: 1.5;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 36px;
            color: var(--accent);
            margin: 60px 0 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--secondary);
            position: relative;
        }
        h2:before {
            content: "✨";
            margin-right: 10px;
        }
        h3 {
            font-size: 28px;
            color: var(--tertiary);
            margin: 40px 0 20px;
            position: relative;
            padding-left: 15px;
        }
        h3:before {
            content: "🎯";
            position: absolute;
            left: -5px;
            top: 2px;
        }
        h4 {
            font-size: 22px;
            color: var(--dark);
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 19px;
            color: #333;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 700;
            color: var(--primary);
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .cultural-note {
            background-color: rgba(255, 243, 176, 0.7);
            border-left: 5px solid var(--secondary);
            padding: 20px 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .cultural-note p {
            font-size: 18px;
            color: #4a3c28;
            margin-bottom: 0;
        }
        .cultural-note i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 20px;
        }
        .gameplay-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 12px;
            margin: 40px auto;
            display: block;
            box-shadow: var(--shadow);
            border: 4px solid white;
            transition: transform 0.5s ease;
        }
        .gameplay-img:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 16px rgba(0,0,0,0.12);
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0 60px;
        }
        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border-top: 4px solid var(--accent);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
            border-top-color: var(--primary);
        }
        .feature-card i {
            font-size: 42px;
            color: var(--accent);
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }
        .feature-card:hover i {
            color: var(--primary);
        }
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 25px;
            margin: 50px 0 70px;
            padding: 30px;
            background-color: var(--light);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .stat-box {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            width: 200px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-color: var(--secondary);
        }
        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 18px;
            color: var(--dark);
            font-weight: 500;
        }
        .quote {
            font-style: italic;
            font-size: 22px;
            color: var(--accent);
            text-align: center;
            margin: 60px 0;
            padding: 30px;
            position: relative;
            background-color: rgba(139, 92, 246, 0.05);
            border-radius: var(--border-radius);
        }
        .quote:before, .quote:after {
            content: '"';
            font-size: 60px;
            color: var(--secondary);
            opacity: 0.6;
        }
        .quote:before {
            position: absolute;
            left: 30px;
            top: 10px;
        }
        .quote:after {
            position: absolute;
            right: 30px;
            bottom: -20px;
        }
        .quote-author {
            display: block;
            margin-top: 20px;
            font-size: 18px;
            color: var(--dark);
            font-weight: 600;
            font-style: normal;
        }
        .table-container {
            overflow-x: auto;
            margin: 40px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th, td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background-color: var(--accent);
            color: white;
            font-weight: 600;
            font-size: 18px;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:hover {
            background-color: #f5f5f5;
        }
        .list-item {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        .list-item:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 24px;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 40px;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-column h4 {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 183, 3, 0.3);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 17px;
            display: inline-block;
            position: relative;
            padding-left: 10px;
        }
        .footer-links li a:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--secondary);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .footer-links li a:hover {
            color: var(--secondary);
            padding-left: 15px;
        }
        .footer-links li a:hover:before {
            opacity: 1;
            left: 0;
        }
        .recommendation {
            background-color: rgba(255, 183, 3, 0.1);
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            border-left: 5px solid var(--secondary);
        }
        .recommendation h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 24px;
            border-bottom: none;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 17px;
            color: #b0b0b0;
            line-height: 1.8;
        }
        .social-icons {
            margin-top: 25px;
            display: flex;
            gap: 15px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 25px;
            }
            .logo {
                font-size: 28px;
            }
            h1 {
                font-size: 42px;
            }
            h2 {
                font-size: 32px;
            }
            h3 {
                font-size: 26px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: var(--primary);
                padding: 30px;
                gap: 20px;
                box-shadow: 0 8px 16px rgba(0,0,0,0.2);
                border-radius: 0 0 12px 12px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                display: none;
            }
            .mobile-btn-group {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin: 25px 0;
                flex-wrap: wrap;
            }
            h1 {
                font-size: 38px;
            }
            h2 {
                font-size: 30px;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 24px;
            }
            p {
                font-size: 18px;
            }
            .intro-section {
                padding: 30px 20px;
            }
            .stat-box {
                width: 180px;
                padding: 20px;
            }
            .stat-number {
                font-size: 36px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                justify-content: space-between;
            }
            .logo {
                font-size: 26px;
            }
            h1 {
                font-size: 34px;
            }
            h2 {
                font-size: 28px;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .stats-container {
                padding: 20px;
            }
            .stat-box {
                width: 150px;
            }
            .quote {
                padding: 20px;
                font-size: 20px;
            }
            .footer-content {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            .intro-section {
                padding: 25px 15px;
            }
            .stat-box {
                width: 130px;
                padding: 15px;
            }
            .stat-number {
                font-size: 30px;
            }
            .stat-label {
                font-size: 16px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 16px;
                width: 100%;
                margin-bottom: 10px;
            }
            .btn-download {
                margin-right: 0;
            }
            .mobile-btn-group {
                flex-direction: column;
            }
            .footer {
                padding: 60px 0 30px;
            }
            .copyright {
                font-size: 16px;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        html {
            scroll-behavior: smooth;
        }
        img {
            loading: lazy;
        }
