* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B00;
            --secondary: #1E90FF;
            --accent: #22C55E;
            --bg-light: #F8F9FA;
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 15px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--text-light);
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--secondary);
        }
        .daman-link a {
            color: var(--accent);
            font-weight: 600;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: var(--accent);
            color: var(--text-light);
            margin-right: 10px;
        }
        .btn-download:hover {
            background-color: #16a34a;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--text-light);
        }
        .btn-login:hover {
            background-color: #0b7dda;
            transform: translateY(-2px);
        }
        main {
            padding: 40px 0;
        }
        .page-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 10px;
        }
        .intro-section {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .section-title {
            font-size: 1.8rem;
            color: var(--secondary);
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title::before {
            content: "🌟";
        }
        .sub-section-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sub-section-title::before {
            content: "🎯";
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
        }
        strong {
            color: var(--primary);
        }
        .highlight-box {
            background-color: #fff8e6;
            border-left: 4px solid var(--primary);
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .feature-list {
            list-style: none;
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .feature-item {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .feature-icon {
            font-size: 1.5rem;
            color: var(--accent);
            margin-top: 3px;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            box-shadow: var(--shadow);
            border-radius: 10px;
            overflow: hidden;
        }
        .game-table th, .game-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .game-table th {
            background-color: var(--secondary);
            color: var(--text-light);
        }
        .game-table tr:hover {
            background-color: #f5fafe;
        }
        .quote {
            font-style: italic;
            color: #666;
            padding: 20px;
            border-left: 4px solid var(--accent);
            margin: 25px 0;
            background-color: #f0fdf4;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 10px;
            font-weight: 600;
            color: var(--text-dark);
        }
        footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 60px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
            display: inline-block;
        }
        .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: var(--accent);
            margin-left: 5px;
        }
        .recommendation {
            background-color: #2d2d2d;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                margin-top: 15px;
                width: 100%;
                display: flex;
                justify-content: center;
            }
            .page-title {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .sub-section-title {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
        }
