* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f9f9;
            padding-bottom: 50px;
        }
        .nav-container {
            background-color: #ff6b00;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #002651;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #002651;
        }
        .daman-link {
            background-color: #002651;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .daman-link:hover {
            background-color: #003a80;
            color: white !important;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #ff6b00;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.5rem;
            }
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            font-size: 2.5rem;
            color: #002651;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 900;
            border-bottom: 3px solid #ff6b00;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #002651;
            margin: 40px 0 20px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h2::before {
            content: "⚽";
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff6b00;
            margin: 30px 0 15px;
            font-weight: 700;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        strong {
            color: #002651;
            font-weight: 700;
        }
        .highlight {
            background-color: #fff3e6;
            padding: 15px;
            border-left: 4px solid #ff6b00;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .download-btn {
            background-color: #28a745;
            color: white;
        }
        .download-btn:hover {
            background-color: #218838;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }
        .login-btn {
            background-color: #007bff;
            color: white;
        }
        .login-btn:hover {
            background-color: #0069d9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }
        ul, ol {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        .game-types {
            background-color: #002651;
            color: white;
            padding: 25px 20px;
            margin: 50px 0 30px;
            border-radius: 10px;
        }
        .game-types h3 {
            color: #ff6b00;
            margin-bottom: 15px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .type-links a {
            color: white;
            text-decoration: none;
            background-color: #ff6b00;
            padding: 8px 15px;
            border-radius: 20px;
            transition: background-color 0.3s;
        }
        .type-links a:hover {
            background-color: #e05a00;
        }
        .tags {
            margin: 30px 0;
        }
        .tags h3 {
            margin-bottom: 15px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-links a {
            color: #002651;
            text-decoration: none;
            background-color: #fff3e6;
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid #ff6b00;
            transition: all 0.3s;
        }
        .tag-links a:hover {
            background-color: #ff6b00;
            color: white;
        }
        .recommendation {
            background-color: #f0f8ff;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            font-size: 1.1rem;
            color: #002651;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: white;
            margin-top: 50px;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p, li {
                font-size: 1rem;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
                width: 100%;
                max-width: 300px;
            }
        }
