* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-nav {
            background-color: #007bff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffdd57;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd57;
            border-bottom: 3px solid #ffdd57;
        }
        .daman-link {
            background-color: #ffdd57;
            color: #007bff !important;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 700;
            border-bottom: none !important;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .daman-link:hover {
            background-color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        h1 {
            font-size: 2.5rem;
            color: #007bff;
            text-align: center;
            margin: 50px 0 35px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.4;
            font-weight: 900;
            text-transform: capitalize;
        }
        h2 {
            font-size: 2rem;
            color: #28a745;
            margin: 60px 0 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffdd57;
            font-weight: 800;
            text-transform: capitalize;
        }
        h3 {
            font-size: 1.5rem;
            color: #dc3545;
            margin: 40px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            color: #495057;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #007bff;
            font-size: 1.1rem;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 20px 10px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .download-btn {
            background-color: #28a745;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #218838;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .login-btn {
            background-color: #dc3545;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #c82333;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 35px auto;
            display: block;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border: 3px solid #ffdd57;
        }
        .guide-list, .event-list, .region-list, .tag-list, .genre-list {
            list-style: none;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .guide-list li, .event-list li, .region-list li {
            background-color: #e9ecef;
            padding: 18px 22px;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            flex: 1 1 calc(50% - 18px);
            border-left: 4px solid #007bff;
        }
        .genre-list li, .tag-list li {
            background-color: #dee2e6;
            padding: 10px 20px;
            border-radius: 25px;
        }
        .genre-list a, .tag-list a {
            color: #2d3436;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .genre-list a:hover, .tag-list a:hover {
            color: #007bff;
            background-color: #f1f3f5;
            padding: 10px 20px;
            border-radius: 25px;
        }
        .footer {
            background-color: #343a40;
            color: #ffffff;
            padding: 50px 0 25px;
            margin-top: 80px;
            border-top: 8px solid #ffdd57;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 35px;
            margin-bottom: 35px;
        }
        .footer-section {
            flex: 1 1 250px;
        }
        .footer-section h3 {
            color: #ffdd57;
            margin-bottom: 20px;
            border-bottom: 2px solid #007bff;
            padding-bottom: 12px;
        }
        .footer-text {
            color: #adb5bd;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffdd57;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 2px solid #495057;
            color: #868e96;
            font-size: 0.95rem;
        }
        .recommendation {
            text-align: center;
            margin: 25px 0;
            font-size: 1.05rem;
            color: #495057;
            line-height: 1.7;
            font-weight: 500;
        }
        .recommendation a {
            color: #007bff;
            font-weight: 700;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1024px) {
            .logo {
                font-size: 1.6rem;
            }
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .guide-list li, .event-list li, .region-list li {
                flex: 1 1 100%;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #007bff;
                padding: 25px;
                gap: 18px;
                box-shadow: 0 8px 12px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 2rem;
                margin: 40px 0 30px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 50px 0 22px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 35px 0 18px;
            }
            p {
                font-size: 1rem;
                margin-bottom: 18px;
            }
            .btn {
                width: 100%;
                margin: 12px 0;
                padding: 14px 25px;
                font-size: 1rem;
            }
            .game-img {
                margin: 30px auto;
            }
            .footer-container {
                gap: 28px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .genre-list, .tag-list {
                gap: 12px;
            }
            .genre-list li, .tag-list li {
                padding: 8px 16px;
            }
            .footer {
                padding: 40px 0 20px;
            }
        }
