@font-face { font-family: 'Product Sans'; src: url('https://fonts.googleapis.com/css?family=Product+Sans') format('woff2'); font-weight: normal; font-style: normal; font-display: swap; } body { font-family: Product Sans, sans-serif; margin: 0; padding: 0; background-color: #222; color: #fff; } header { display: flex; justify-content: space-between; align-items: center; background-color: #333; box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1); padding: 20px; flex-wrap: wrap; gap: 15px; } .header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; } .filters-row { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; } .filter-container { display: flex; align-items: center; gap: 8px; } .filter-container label { font-size: 14px; font-weight: 500; color: #fff; white-space: nowrap; } .filter-container select { padding: 6px 10px; border: 1px solid #555; border-radius: 4px; background-color: #444; color: #fff; font-size: 14px; outline: none; min-width: 100px; } .filter-container select:focus { border-color: #666; } .checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #fff; cursor: pointer; white-space: nowrap; user-select: none; } .checkbox-label input[type="checkbox"] { display: none; } .checkbox-label .checkmark { position: relative; width: 48px; height: 24px; background-color: #555; border-radius: 12px; transition: all 0.3s ease; cursor: pointer; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3); } .checkbox-label .checkmark::before { content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background-color: #fff; border-radius: 50%; transition: all 0.3s ease; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); } .checkbox-label input[type="checkbox"]:checked + .checkmark { background-color: #4287f5; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 8px rgba(66, 135, 245, 0.4); } .checkbox-label input[type="checkbox"]:checked + .checkmark::before { transform: translateX(24px); background-color: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); } .checkbox-label:hover .checkmark { background-color: #666; } .checkbox-label:hover input[type="checkbox"]:checked + .checkmark { background-color: #5a9aFF; } .checkbox-label:active .checkmark::before { transform: scale(0.95); } .checkbox-label input[type="checkbox"]:checked + .checkmark::before { transform: translateX(24px) scale(1); } .search-container { display: flex; align-items: center; gap: 8px; flex: 1; max-width: 250px; } .search-container label { font-size: 14px; font-weight: 500; color: #fff; white-space: nowrap; } .search-container input { padding: 6px 10px; border: 1px solid #555; border-radius: 4px; background-color: #444; color: #fff; font-size: 14px; outline: none; flex: 1; } .search-container input:focus { border-color: #666; } .search-container input::placeholder { color: #aaa; } h1 { margin: 0; } .card-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 20px; } .card { width: 250px; padding: 20px; background-color: #333; box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1); border-radius: 8px; position: relative; } .card h2 { margin-top: 0; } .card a { color: #050505; } .status-badge { display: inline-block; padding: 4px 8px; font-size: 12px; font-weight: bold; border-radius: 4px; } .status-beta { background-color: #fdd462; color: #000; } .status-development { background-color: #4287f5; color: #000; } .status-stable { background-color: #51d88a; color: #000; } .status-noupdates { background-color: #c89a9d; color: #000; } @media (max-width: 768px) { header { flex-direction: column; align-items: stretch; padding: 15px; } .filters-row { flex-direction: column; gap: 10px; align-items: stretch; } .filter-container { justify-content: space-between; } #type-filter { min-width: 120px; } .search-container { max-width: none; } .checkbox-label { justify-content: space-between; } .rounded-button { margin-top: 10px; } } footer { background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px; } .footer-content { display: flex; justify-content: space-between; align-items: center; max-width: 960px; margin: 0 auto; } .made-by { font-size: 14px; } .social-media a { color: #fff; font-size: 20px; margin-left: 10px; } .social-media a:hover { color: #aaa; } .rounded-button { display: inline-block; margin-right: 2px; padding: 7px 7px; border-radius: 20px; background-color: #f0f0f0; color: #333; text-decoration: none; line-height: 1; } .rounded-button:hover { background-color: #ccc; } .visit-site-button { display: inline-block; padding: 5px 10px; border-radius: 30px; background-color: #f2f3f0; color: #000000; text-decoration: none; font-size: 14px; font-weight: bold; } .badge { display: inline-block; position: absolute; top: 10px; right: 10px; padding: 4px 8px; background-color: rgb(112, 0, 63); color: white; font-size: 12px; border-radius: 4px; font-weight: bolder; } /* .banner { background: rgba(121, 120, 120, 0.5); display: flex; justify-content: center; } .banner-content { padding: 16px; max-width: 400px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; } .banner-text { flex-grow: 1; line-height: 1.4; color: white; } .rounded-button-banner { display: inline-block; margin: 10px; padding: 8px 16px; border-radius: 20px; background-color: #ffffff; color: #000000; text-decoration: none; text-align: center; } .rounded-button-banner:hover { background-color: #ccc; } */ .no-results-message { display: none; padding: 20px; color: #fff; text-align: center; } .no-results-message svg { width: 64px; height: 64px; margin-bottom: 10px; }