From 402eaa7d4b1e970a0cd9a49187040cf3ab08a4c3 Mon Sep 17 00:00:00 2001 From: fynks <75840152+fynks@users.noreply.github.com> Date: Fri, 22 Aug 2025 19:13:34 +0500 Subject: [PATCH] improved --- dist/css/styles.css | 53 +------- dist/index.html | 290 ++++++++++++++++++-------------------------- 2 files changed, 124 insertions(+), 219 deletions(-) diff --git a/dist/css/styles.css b/dist/css/styles.css index 97d8694..3316d62 100644 --- a/dist/css/styles.css +++ b/dist/css/styles.css @@ -7,7 +7,7 @@ --primary-dark: #3730a3; --accent: #8b5cf6; --success: #10b981; - --warning: #f59e0b; + --warning: #66512e; --error: #ef4444; --info: #2c6ace; @@ -649,14 +649,14 @@ .alert-warning { background: rgba(245, 158, 11, 0.08); - border-color: rgba(245, 158, 11, 0.2); + border-color: rgba(44, 35, 19, 0.2); color: var(--warning); } .alert-icon { flex-shrink: 0; - width: 20px; - height: 20px; + width: 24px; + height: 24px; margin-top: 2px; } @@ -1357,51 +1357,6 @@ 100% { transform: rotate(360deg); } } - /* Age Verification */ - .age-verification-overlay { - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - background: rgba(0, 0, 0, 0.8); - display: flex; - align-items: center; - justify-content: center; - z-index: 9999; - backdrop-filter: blur(8px); - } - - .age-verification-modal { - background: var(--bg-primary); - border-radius: var(--radius-2xl); - padding: var(--space-4xl); - max-width: 500px; - margin: var(--space-lg); - box-shadow: var(--shadow-xl); - border: 1px solid var(--border-primary); - } - - .age-verification-content { - text-align: center; - } - - .age-verification-content h3 { - color: var(--error); - margin-bottom: var(--space-xl); - display: flex; - align-items: center; - justify-content: center; - gap: var(--space-md); - } - - .age-verification-actions { - display: flex; - gap: var(--space-lg); - justify-content: center; - margin-top: var(--space-2xl); - } - /* Footer */ .site-footer { background: var(--bg-secondary); diff --git a/dist/index.html b/dist/index.html index 8cb8061..77cf6fb 100644 --- a/dist/index.html +++ b/dist/index.html @@ -219,7 +219,126 @@ - + +
+
+
+
+

Supported File Hosts

+

Browse and search through 300+ supported file hosting services

+
+ +
+ +
+ +
+
+
+

Loading file hosts...

+
+
+
+
+
+ + +
+
+
+
+

Compare Services

+

Select two services to see a detailed side-by-side comparison

+
+ +
+
+ +
+ +
+
+
VS
+
+ +
+ +
+
+
+ +
+
+ + + + + +

Ready to Compare

+

Select two services above to see a detailed comparison

+
+
+
+
+
+ + +
+
+
+
+

Adult Content Hosts

+

+ Support for adult content varies significantly across debrid services. Some platforms actively support major adult file hosts, while others exclude them entirely due to policy or legal considerations. +

+
+ +
+ +
+ +
+
+
+

Loading adult hosts...

+
+
+
+
+
+ +
@@ -334,148 +453,6 @@
- -
-
-
-
-

Supported File Hosts

-

Browse and search through 300+ supported file hosting services

-
- -
- -
- -
-
-
-

Loading file hosts...

-
-
-
-
-
- - -
-
-
-
-

Compare Services

-

Select two services to see a detailed side-by-side comparison

-
- -
-
- -
- -
-
-
VS
-
- -
- -
-
-
- -
-
- - - - - -

Ready to Compare

-

Select two services above to see a detailed comparison

-
-
-
-
-
- - -
-
-
-
-

Adult Content Hosts

-

- Support for adult content varies significantly across debrid services. Some platforms actively support major adult file hosts, while others exclude them entirely due to policy or legal considerations. -

-
- -
-
-
-

- - - - - - Adult Content Warning -

-

This section contains information about adult content hosting services.

-

You must be 18 years or older to view this content.

-
- - -
-
-
-
- - -
-
-
-
@@ -819,33 +796,6 @@ }); } - // Age verification for adult content - const overlay = document.getElementById('age-verification-overlay'); - const adultContent = document.getElementById('adult-content'); - const confirmAge = document.getElementById('confirm-age'); - const denyAge = document.getElementById('deny-age'); - - if (confirmAge) { - confirmAge.addEventListener('click', () => { - overlay.style.display = 'none'; - adultContent.style.display = 'block'; - localStorage.setItem('age-verified', 'true'); - }); - } - - if (denyAge) { - denyAge.addEventListener('click', () => { - overlay.style.display = 'none'; - // Keep adult content hidden - }); - } - - // Check if age was previously verified - if (localStorage.getItem('age-verified') === 'true') { - overlay.style.display = 'none'; - adultContent.style.display = 'block'; - } - // Search functionality for file hosts const hostSearchInput = document.getElementById('host-search-input'); const clearHostSearch = document.getElementById('clear-host-search');