* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a237e;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #ffca28;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            text-decoration: none;
        }
        .logo span {
            color: white;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links li a:hover {
            color: #ffca28;
        }
        .daman-link {
            background-color: #ffca28;
            padding: 5px 15px;
            border-radius: 20px;
            color: #1a237e !important;
            font-weight: 600;
        }
        .daman-link:hover {
            background-color: #ffd54f;
        }
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a237e;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
        }
        h1 {
            font-size: 36px;
            color: #1a237e;
            margin: 40px 0 30px;
            text-align: center;
            font-weight: 800;
            border-bottom: 3px solid #ffca28;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 28px;
            color: #1a237e;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h2::before {
            content: "🔥";
        }
        h3 {
            font-size: 22px;
            color: #283593;
            margin: 35px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h3::before {
            content: "⚡";
        }
        p {
            margin-bottom: 20px;
            font-size: 16px;
            text-align: justify;
        }
        .highlight {
            background-color: #fff3e0;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
            color: #e65100;
        }
        .keyword {
            font-weight: 700;
            color: #1a237e;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .img-caption {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
            font-style: italic;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #2e7d32;
            color: white;
        }
        .download-btn:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
        }
        .login-btn {
            background-color: #1976d2;
            color: white;
        }
        .login-btn:hover {
            background-color: #1565c0;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
        }
        ul, ol {
            margin: 20px 0 30px 40px;
        }
        li {
            margin-bottom: 15px;
            font-size: 16px;
        }
        .game-types {
            background-color: #e8f5e9;
            padding: 25px;
            border-radius: 10px;
            margin: 60px 0;
        }
        .game-types h3 {
            margin-top: 0;
        }
        .type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .type-link {
            background-color: #c8e6c9;
            color: #2e7d32;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        .type-link:hover {
            background-color: #a5d6a7;
        }
        .tags {
            background-color: #f3e5f5;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag-link {
            background-color: #e1bee7;
            color: #7b1fa2;
            padding: 6px 12px;
            border-radius: 15px;
            text-decoration: none;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        .tag-link:hover {
            background-color: #ce93d8;
        }
        .recommendation {
            background-color: #fff8e1;
            padding: 30px;
            border-radius: 10px;
            margin: 50px 0;
            text-align: center;
            border: 2px solid #ffccbc;
        }
        .recommendation p {
            font-size: 18px;
            font-weight: 500;
            color: #e65100;
            margin-bottom: 0;
        }
        .recommendation a {
            color: #e65100;
            font-weight: 700;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 20px;
            background-color: #1a237e;
            color: white;
            margin-top: 60px;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 16px;
                width: 100%;
                text-align: center;
            }
            .img-container {
                margin: 30px 0;
            }
        }
