* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8B4513;
            --secondary: #FFA500;
            --accent: #FFD700;
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --bg-light: #F5F5DC;
            --bg-dark: #2C3E50;
            --shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 15px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .daman-link {
            color: var(--accent);
            font-weight: 600;
        }
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        .btn-container {
            margin: 30px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: var(--secondary);
            color: var(--text-dark);
        }
        .btn-download:hover {
            background-color: #e69500;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255,165,0,0.3);
        }
        .btn-login {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }
        .btn-login:hover {
            background-color: #1a2530;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(44,62,80,0.3);
        }
        .main-content {
            padding: 40px 0;
        }
        h1 {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.4;
        }
        h2 {
            font-size: 32px;
            color: var(--bg-dark);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            font-size: 24px;
            color: var(--primary);
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.9;
        }
        p br {
            margin-bottom: 5px;
        }
        strong {
            color: var(--primary);
        }
        .highlight {
            background-color: rgba(255,215,0,0.2);
            padding: 2px 5px;
            border-radius: 3px;
        }
        .emoji {
            margin: 0 5px;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 10px;
        }
        .img-caption {
            font-size: 16px;
            color: #666;
            font-style: italic;
        }
        .intro-section {
            background-color: rgba(255,215,0,0.1);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            border-left: 5px solid var(--secondary);
        }
        .gameplay-section, .features-section, .story-section, .tech-section, .reception-section, .community-section {
            margin-bottom: 50px;
        }
        ul, ol {
            margin: 20px 0 30px 40px;
            font-size: 18px;
            line-height: 2;
        }
        li {
            margin-bottom: 10px;
        }
        footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 22px;
        }
        .game-categories, .tags {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .game-categories li, .tags li {
            margin-bottom: 10px;
        }
        .game-categories a, .tags a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .game-categories a:hover, .tags a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .recommendation {
            background-color: rgba(255,165,0,0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid var(--secondary);
        }
        .recommendation h4 {
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 16px;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--primary);
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin-left: 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 22px;
            }
            p, ul, ol {
                font-size: 17px;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            .intro-section {
                padding: 20px;
            }
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
