:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #121218;
    --bg-card: #1a1a24;
    --text-primary: #e0e0ff;
    --text-secondary: #a0a0c0;
    --accent: #8a2be2;
    --accent2: #ff00c8;
    --online: #2ecc71;
    --offline: #e74c3c;
    --unstable: #f39c12;
    --border: #2a2a3a;
    --glitch1: #ff00c8;
    --glitch2: #00f7ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Rajdhani", sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    background-image: radial-gradient(
            circle at 10% 20%,
            rgba(40, 40, 80, 0.1) 0px,
            transparent 50%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(60, 20, 80, 0.1) 0px,
            transparent 50%
        );
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.navbar {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    transition: all 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent2);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    width: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    perspective: 1000px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--accent), #5d0fc9);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 10;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.7);
    animation: pulse 3s infinite alternate;
}

.logo-text {
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    font-size: 48px;
    text-transform: uppercase;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(20px);
}

.darknetworld {
    color: transparent;
    background: linear-gradient(45deg, #8a2be2, #5d0fc9, #00f7ff);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    position: relative;
    letter-spacing: 2px;
    /* animation: glow 2s infinite alternate; */
}

.dot-com {
    display: inline-block;
    font-family: "Share Tech Mono", monospace;
    font-weight: 700;
    color: var(--accent2);
    position: relative;
    animation: glitch 1.5s infinite;
    text-shadow: 0 0 5px var(--glitch1), 0 0 15px var(--glitch1),
        0 0 30px var(--glitch1);
    transform: skew(-10deg);
    letter-spacing: -2px;
    margin-left: -2px;
}

.dot-com::before,
.dot-com::after {
    content: ".com";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.dot-com::before {
    animation: glitch-before 2s infinite;
    color: var(--glitch1);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.dot-com::after {
    animation: glitch-after 2s infinite;
    color: var(--glitch2);
    z-index: -2;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}


        
        .login-title {
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
            color: var(--text-primary);
            position: relative;
        }
        
        .login-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 10px auto 0;
            border-radius: 3px;
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-secondary);
        }
        
        .input-with-icon {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 18px;
        }
        
        .form-control {
            width: 100%;
            padding: 14px 14px 14px 45px;
            background: rgba(30, 30, 45, 0.5);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: 'Share Tech Mono', monospace;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
        }
        
        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 14px;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
        }
        
        .remember-me input {
            margin-right: 8px;
            accent-color: var(--accent);
        }
        
        .forgot-password {
            color: var(--accent2);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .forgot-password:hover {
            color: #ff66d8;
            text-decoration: underline;
        }
        
        .btn-login {
            width: 100%;
            padding: 14px;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
            border: none;
            border-radius: 8px;
            color: white;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .btn-login::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-login:hover::before {
            left: 100%;
        }
        
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 25px 0;
        }
        
        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: var(--border);
        }
        
        .divider-text {
            padding: 0 15px;
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        .social-login {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            font-size: 20px;
            transition: all 0.3s;
        }
        
        .social-btn:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
            border-color: var(--accent);
        }
        
        .register-link {
            text-align: center;
            margin-top: 20px;
            font-size: 15px;
        }
        
        .register-link a {
            color: var(--accent2);
            text-decoration: none;
            margin-left: 5px;
            transition: color 0.3s;
        }
        
        .register-link a:hover {
            text-decoration: underline;
            color: #ff66d8;
        }
        
        .security-note {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            background: rgba(243, 156, 18, 0.1);
            border: 1px solid var(--unstable);
            border-radius: 8px;
            color: var(--unstable);
            font-size: 14px;
        }
        



.stats-container {
    display: flex;
    gap: 20px;
    flex: 1;
    max-width: 800px;
}

.stats {
    display: flex;
    gap: 20px;
    padding: 5px 15px;
    border-radius: 10px;
    border: 1px solid var(--border);
    flex: 1;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: "Share Tech Mono", monospace;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.ad-spots {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}


.ad-banner {
    flex: 0 1 calc(33.333% - 15px);
    max-width: calc(33.333% - 15px);
    height: 100px;
    background: linear-gradient(90deg, #1a0d2b, #2a0d3b, #1a0d2b);
    border: 1px solid var(--accent);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
    animation: bumpUpDown 4s ease-in-out infinite;
    transition: all 0.3s ease;
}
@keyframes bumpUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.ad-banner:hover {
    animation-play-state: paused;
    transform: translateY(-5px);
    border-color: var(--accent2);
}

.ad-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.ad-banner.empty-spot {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #888;
    border: 1px dashed #555;
    background: #0d0d0d;
}


.ad-banner_xl {
    flex: 0 1 calc(65% - 10px);
    max-width: calc(99.999% - 10px);
    height: 80px;
    background: linear-gradient(90deg, #1a0d2b, #2a0d3b, #1a0d2b);
    border: 1px solid var(--accent);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
    animation: bumpUpDown 4s ease-in-out infinite;
    transition: all 0.3s ease;
}



@media (max-width: 1024px) {
    .ad-banner {
        flex: 0 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .ad-banner {
        flex: 0 1 100%;
        max-width: 100%;
    }
}


.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.ad-banner.empty-spot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-style: italic;
    font-size: 14px;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-align: center;
    height: 100px;
}

.ad-banner.empty-spot p {
    margin: 4px 0;
}

.ad-banner.empty-spot strong {
    color: #4ea8ff;
}

.category-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Share Tech Mono", monospace;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-btn:hover,
.category-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.badge-online {
    background: rgba(46, 204, 113, 0.15);
    color: var(--online);
    border: 1px solid var(--online);
}

.badge-offline {
    background: rgba(231, 76, 60, 0.15);
    color: var(--offline);
    border: 1px solid var(--offline);
}

.online {
    color: var(--online);
}

.offline {
    color: var(--offline);
}

.unstable {
    color: var(--unstable);
}

.badge-unstable {
    background: rgba(243, 156, 18, 0.15);
    color: var(--unstable);
    border: 1px solid var(--unstable);
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 15px;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    flex: 1;
    max-width: 400px;
}

.search-box input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 16px;
    width: 100%;
    outline: none;
}

.search-box button {
    background: var(--accent);
    border: none;
    color: white;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #7927c7;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Share Tech Mono", monospace;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.last-update {
    background: var(--bg-card);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.last-update:hover {
    background: var(--bg-card-hover, #01274b);
}

.status-table {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.table-header {
    display: flex;
    background: rgba(138, 43, 226, 0.1);
    padding: 15px 25px;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    font-family: "Share Tech Mono", monospace;
}

.table-row {
    display: flex;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.table-row:last-child {
    border-bottom: none;
}

.col-name {
    width: 20%;
    display: flex;
    align-items: left;
    gap: 15px;
    white-space: nowrap;
}

.col-status {
    width: 15%;
    display: flex;
    align-items: left;
    gap: 8px;
}

.col-uptime,
.col-last-checked {
    width: 15%;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.col-position {
    width: 15%; 
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
}
.col-mirrors,
.col-actions {
    width: 15%; 
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
}

.col-actions a,
.col-actions button {
    white-space: nowrap;
}


.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.indicator-online {
    background: var(--online);
    box-shadow: 0 0 8px var(--online);
    animation: pulse 2s infinite;
}

.indicator-offline {
    background: var(--offline);
}

.indicator-unstable {
    background: var(--unstable);
    animation: blink 1.5s infinite;
}

.action-btn {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-family: "Share Tech Mono", monospace;
}

.action-btn:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 10px var(--accent);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.page-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.page-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.disclaimer {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.disclaimer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.disclaimer h3 {
    color: var(--unstable);
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

footer {
    text-align: center;
    padding: 30px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid var(--border);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(138, 43, 226, 0.8),
            0 0 30px rgba(93, 15, 201, 0.6);
    }
}

@keyframes glitch {
    0% {
        transform: skew(-10deg);
    }

    5% {
        transform: skew(10deg) translate(2px, -2px);
    }

    10% {
        transform: skew(-10deg) translate(-2px, 2px);
    }

    15% {
        transform: skew(10deg) translate(3px, -3px);
    }

    20% {
        transform: skew(-10deg) translate(-3px, 3px);
    }

    25% {
        transform: skew(10deg);
    }

    30% {
        transform: skew(-10deg);
    }

    100% {
        transform: skew(-10deg);
    }
}

@keyframes glitch-before {
    0% {
        transform: translate(0);
    }

    5% {
        transform: translate(-3px, 3px);
    }

    10% {
        transform: translate(-6px, 6px);
    }

    15% {
        transform: translate(3px, -3px);
    }

    20% {
        transform: translate(6px, -6px);
    }

    25% {
        transform: translate(0);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes glitch-after {
    0% {
        transform: translate(0);
    }

    5% {
        transform: translate(3px, -3px);
    }

    10% {
        transform: translate(6px, -6px);
    }

    15% {
        transform: translate(-3px, 3px);
    }

    20% {
        transform: translate(-6px, 6px);
    }

    25% {
        transform: translate(0);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(138, 43, 226, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
    }
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
            rgba(138, 43, 226, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(138, 43, 226, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

.glitch-line {
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        var(--glitch1),
        transparent
    );
    opacity: 0;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% {
        top: 0%;
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        top: 100%;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .controls {
        flex-direction: column;
    }

    .search-box {
        max-width: 100%;
    }

    .table-header {
        display: none;
    }

    .table-row {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .col-name,
    .col-status,
    .col-uptime,
    .col-last-checked,
    .col-actions {
        width: 100%;
    }

    .col-actions {
        text-align: left;
        margin-top: 10px;
    }

    .stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-text {
        font-size: 36px;
    }

    .nav-links {
        gap: 15px;
        font-size: 16px;
        margin-top: 15px;
    }

    .category-btn {
        padding: 10px 15px;
        font-size: 16px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .ad-spots {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 28px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stats {
        gap: 10px;
        padding: 10px;
    }

    .stat-value {
        font-size: 20px;
    }

    .nav-links {
        gap: 10px;
        font-size: 14px;
    }

    .category-filter {
        gap: 8px;
    }

    .category-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

a {
    text-decoration: none;
}

.contact-info {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #ddd;
    background: var(--bg-card);
    padding: 10px 15px;
    border-radius: 6px;
    max-width: fit-content;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.contact-info strong {
    color: #66b0f5;
}

.contact-info span {
    font-weight: 600;
    color: #fff;
}

.donation-info {
    color: #ccc;
    background: var(--bg-card);
    padding: 15px 20px;
    border-left: 4px solid #ff6600;
    font-family: "Courier New", monospace;
    font-size: 15px;
    margin-top: 20px;
    border-radius: 5px;
    line-height: 1.6;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.donation-info strong {
    color: #ff9933;
}

.donation-info span {
    display: block;
    color: #eee;
    margin-top: 5px;
    word-break: break-all;
}

.donation-info .thank-you {
    font-size: 16px;
    font-weight: bold;
    color: #ff99cc;
    text-align: end;
}

.site-tag {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 6px;
    color: #fff;
}
.tag-top {
    color: #ffd700;
}
.tag-new {
    color: #28a745;
}
.tag-hot {
    color: #ff5733;
}
.tag-rising {
    color: #17a2b8;
}
.tag-challenge {
    color: #6f42c1;
}

.site-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.site-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-icon {
    background: linear-gradient(135deg, var(--accent), #5d0fc9);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.site-name {
    font-size: 32px;
    font-weight: 700;
    font-family: "Share Tech Mono", monospace;
}

.site-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.site-stats {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.stat-box {
    text-align: center;
    padding: 0 15px;
}

.stat-box:not(:last-child) {
    border-right: 1px solid var(--border);
}

.stat-title {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    font-family: "Share Tech Mono", monospace;
}

.detail-section {
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.section-content {
    padding: 0 10px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pgp-key {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    font-family: "Courier New", monospace;
    font-size: 13px;
    overflow-x: auto;
    margin: 15px 0;
    position: relative;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent);
    color: var(--text-primary);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
}

.copy-btn:hover {
    background: var(--accent);
}

.mirrors-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mirror-link {
    display: block;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    color: var(--text-primary);
    transition: all 0.3s;
    font-family: "Share Tech Mono", monospace;
    font-size: 14px;
}

.mirror-link:hover {
    background: rgba(138, 43, 226, 0.2);
    border-left: 3px solid var(--accent);
}

.visit-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.visit-btn:hover {
    background: #7927c7;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.5);
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.network-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border-top: 4px solid var(--border);
}

.network-card.online {
    border-top-color: var(--online);
}

.network-card.offline {
    border-top-color: var(--offline);
}

.network-card.unstable {
    border-top-color: var(--unstable);
}

.network-card .stat-value {
    font-size: 32px;
    margin: 10px 0;
}

.network-card .stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.disclaimer {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.disclaimer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.disclaimer h3 {
    color: var(--unstable);
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.indicator-online {
    background: var(--online);
    box-shadow: 0 0 8px var(--online);
    animation: pulse 2s infinite;
}

.indicator-offline {
    background: var(--offline);
}

.indicator-unstable {
    background: var(--unstable);
    animation: blink 1.5s infinite;
}




        .api-doc-header {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }

        .api-doc-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .api-doc-header p {
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.7;
        }

        .api-doc-header .accent {
            color: var(--accent2);
            font-weight: 600;
        }

        .api-section {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 30px;
            margin: 20px 0;
            border: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            margin-bottom: 25px;
            color: var(--accent);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }

        .section-title i {
            font-size: 28px;
        }

        .section-content {
            padding: 0 10px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .section-content p {
            margin-bottom: 20px;
            font-size: 17px;
        }

        .section-content ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }

        .section-content li {
            margin-bottom: 12px;
            font-size: 17px;
        }

        .section-content strong {
            color: var(--accent2);
            font-weight: 600;
        }

        .code-block {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 8px;
            font-family: "Share Tech Mono", monospace;
            font-size: 15px;
            overflow-x: auto;
            margin: 25px 0;
            position: relative;
            border: 1px solid var(--border);
        }

        .code-block pre {
            margin: 0;
            overflow-x: auto;
        }

        .code-block .lang {
            position: absolute;
            top: 10px;
            right: 10px;
            color: var(--text-secondary);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .code-block .copy-btn {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--accent);
            color: var(--text-primary);
            padding: 5px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            font-family: "Rajdhani", sans-serif;
        }

        .code-block .copy-btn:hover {
            background: var(--accent);
        }

        .endpoint-card {
            background: rgba(30, 30, 45, 0.6);
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid var(--accent);
        }

        .endpoint-method {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 4px;
            font-weight: 700;
            margin-bottom: 15px;
            background: rgba(138, 43, 226, 0.2);
            border: 1px solid var(--accent);
            color: var(--accent);
            font-family: "Share Tech Mono", monospace;
        }

        .endpoint-url {
            font-family: "Share Tech Mono", monospace;
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--text-primary);
            word-break: break-all;
        }

        .endpoint-description {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        .param-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .param-table th {
            background: rgba(138, 43, 226, 0.1);
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            border-bottom: 1px solid var(--border);
        }

        .param-table td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border);
            color: var(--text-secondary);
        }

        .param-table tr:last-child td {
            border-bottom: none;
        }

        .param-name {
            font-family: "Share Tech Mono", monospace;
            color: var(--accent);
        }

        .required {
            color: var(--offline);
            font-weight: 700;
        }

        .optional {
            color: var(--online);
            font-weight: 700;
        }

        .response-example {
            margin-top: 25px;
        }

        .api-notes {
            background: rgba(243, 156, 18, 0.1);
            border-left: 4px solid var(--unstable);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }

        .api-notes h3 {
            color: var(--unstable);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(10, 10, 30, 0.5);
            border-radius: 8px;
            margin-top: 20px;
            border: 1px solid var(--border);
        }

        .contact-info i {
            font-size: 24px;
            color: var(--accent2);
        }

        .contact-details {
            flex: 1;
        }

        .contact-details strong {
            display: block;
            color: var(--accent2);
            margin-bottom: 5px;
            font-size: 18px;
        }

        .contact-details span {
            font-family: "Share Tech Mono", monospace;
            color: var(--text-primary);
            word-break: break-all;
        }

        footer {
            text-align: center;
            padding: 30px 0;
            color: var(--text-secondary);
            font-size: 14px;
            border-top: 1px solid var(--border);
            margin-top: 50px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
            position: relative;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-links a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
            }

            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(138, 43, 226, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
            }
        }

        @keyframes glitch {
            0% {
                transform: skew(-10deg);
            }

            5% {
                transform: skew(10deg) translate(2px, -2px);
            }

            10% {
                transform: skew(-10deg) translate(-2px, 2px);
            }

            15% {
                transform: skew(10deg) translate(3px, -3px);
            }

            20% {
                transform: skew(-10deg) translate(-3px, 3px);
            }

            25% {
                transform: skew(10deg);
            }

            30% {
                transform: skew(-10deg);
            }

            100% {
                transform: skew(-10deg);
            }
        }

        @media (max-width: 768px) {
            .logo-text {
                font-size: 36px;
            }

            .api-doc-header h1 {
                font-size: 32px;
            }

            .section-title {
                font-size: 22px;
            }

            .param-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 28px;
            }

            .api-doc-header h1 {
                font-size: 28px;
            }

            .api-section {
                padding: 20px 15px;
            }

            .endpoint-url {
                font-size: 16px;
            }

            .code-block {
                padding: 15px;
                font-size: 13px;
            }
        }

                .pgp-key {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 8px;
            font-family: "Courier New", monospace;
            font-size: 14px;
            overflow-x: auto;
            margin: 25px 0;
            position: relative;
            border: 1px solid var(--border);
            line-height: 1.8;
        }

        .copy-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--accent);
            color: var(--text-primary);
            padding: 5px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            font-family: "Rajdhani", sans-serif;
        }

        .copy-btn:hover {
            background: var(--accent);
        }

        .faq-item {
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 25px;
        }

        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--accent2);
            cursor: pointer;
        }

        .faq-answer {
            padding: 0 10px 0 40px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .privacy-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .privacy-point {
            display: flex;
            gap: 15px;
        }

        .privacy-point i {
            color: var(--accent);
            font-size: 20px;
            margin-top: 5px;
        }

        .ad-spots