: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);
}

.darknet {
    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;
}

.dot-fail {
    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-fail::before,
.dot-fail::after {
    content: ".fail";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

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

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

.index {
    color: var(--accent2);
    font-family: "Share Tech Mono", monospace;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--accent2), 0 0 15px var(--accent2);
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 25px rgba(138, 43, 226, 0.7);
    }
    100% {
        box-shadow: 0 0 45px rgba(138, 43, 226, 1);
    }
}

@keyframes glitch-before {
    0%, 20%, 40%, 60%, 80%, 100% {
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        transform: translate(-2px, -2px);
    }
    10%, 30%, 50%, 70%, 90% {
        clip-path: polygon(0 4%, 100% 4%, 100% 7%, 0 7%);
        transform: translate(2px, 2px);
    }
}

@keyframes glitch-after {
    0%, 20%, 40%, 60%, 80%, 100% {
        clip-path: polygon(0 85%, 100% 85%, 100% 90%, 0 90%);
        transform: translate(2px, 2px);
    }
    10%, 30%, 50%, 70%, 90% {
        clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
        transform: translate(-2px, -2px);
    }
}

@keyframes glitch {
    0% {
        text-shadow: 0 0 6px var(--glitch1), 0 0 16px var(--glitch1), 0 0 35px var(--glitch1);
    }
    50% {
        text-shadow: 0 0 12px var(--glitch2), 0 0 25px var(--glitch2), 0 0 45px var(--glitch2);
    }
    100% {
        text-shadow: 0 0 6px var(--glitch1), 0 0 16px var(--glitch1), 0 0 35px var(--glitch1);
    }
}


.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;
}

@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 pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 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;
}

.glitch {
    position: relative;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: underline;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.glitch::before {
    animation: glitchTop 2s infinite linear alternate-reverse;
    color: var(--glitch1);
}

.glitch::after {
    animation: glitchBottom 2s infinite linear alternate-reverse;
    color: var(--glitch2);
}

@keyframes glitchTop {
    0% {
        clip: rect(0, 9999px, 0, 0);
        transform: translate(0, 0);
    }
    20% {
        clip: rect(2px, 9999px, 10px, 0);
        transform: translate(-2px, -2px);
    }
    40% {
        clip: rect(5px, 9999px, 15px, 0);
        transform: translate(2px, 2px);
    }
    60% {
        clip: rect(10px, 9999px, 20px, 0);
        transform: translate(-1px, 1px);
    }
    80% {
        clip: rect(0, 9999px, 5px, 0);
        transform: translate(1px, -1px);
    }
    100% {
        clip: rect(2px, 9999px, 8px, 0);
        transform: translate(0, 0);
    }
}

@keyframes glitchBottom {
    0% {
        clip: rect(0, 9999px, 0, 0);
        transform: translate(0, 0);
    }
    20% {
        clip: rect(15px, 9999px, 25px, 0);
        transform: translate(2px, 2px);
    }
    40% {
        clip: rect(12px, 9999px, 20px, 0);
        transform: translate(-2px, -2px);
    }
    60% {
        clip: rect(5px, 9999px, 15px, 0);
        transform: translate(1px, -1px);
    }
    80% {
        clip: rect(10px, 9999px, 20px, 0);
        transform: translate(-1px, 1px);
    }
    100% {
        clip: rect(0, 9999px, 5px, 0);
        transform: translate(0, 0);
    }
}


.main-layout {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    margin-top: 30px;
}

.main-content {
    flex: 3; 
    min-width: 300px;
}


.sidebar {
    flex: 1; 
    min-width: 280px;
}

.sidebar h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    text-shadow: 0 0 8px var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.article-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(138, 43, 226, 0.4);
}

.article-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.article-card h4 a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s;
}

.article-card h4 a:hover {
    color: var(--accent2);
}

.article-card .article-snippet {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-card .article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
    font-family: "Share Tech Mono", monospace;
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .controls {
        flex-direction: column;
        align-items: stretch;
    }
    .search-box {
        width: 100%;
    }
    .search-box input {
        flex-grow: 1;
    }
    .filter-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .table-row {
        grid-template-columns: 1fr; /* 1-column layout */
        gap: 15px;
    }
    .table-row [class^="col-"] {
        grid-column: 1 / -1 !important;
        justify-content: flex-start !important;
    }
    .col-status, .col-last-checked, .col-mirrors {
        justify-content: flex-start !important;
    }
}

        .article-container {
           
            margin: 20px auto 40px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: clamp(20px, 5vw, 45px); 
            box-shadow: 0 0 35px rgba(138, 43, 226, 0.1), 0 0 10px rgba(0, 0, 0, 0.3);
            overflow: hidden; 
        }

        .article-title {
            font-family: "Orbitron", sans-serif;
            font-size: clamp(2rem, 5vw, 3rem); 
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .article-title .gradient-text {
            color: transparent;
            background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            animation: text-shine 5s linear infinite;
        }

        @keyframes text-shine {
            to {
                background-position: 200% center;
            }
        }

        .article-meta-full {
            font-family:  "Share Tech Mono", monospace;
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .article-meta-full .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            padding: 5px 12px;
            border-radius: 5px;
            border: 1px solid var(--border);
        }

        .article-meta-full .meta-item i {
            color: var(--accent);
        }

        .article-image-full {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 35px;
            border: 1px solid var(--border);
            box-shadow: 0 5px 30px rgba(138, 43, 226, 0.2);
        }

        .article-content {
            color: var(--text-primary);
            font-size: 18px; 
            line-height: 1.9;
            font-family: "Rajdhani", sans-serif;
            font-weight: 500;
        }

        .article-content p {
            margin-bottom: 1.5em;
        }
        .article-content h2 {
            font-family: "Orbitron", sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            margin-top: 2.5em;
            margin-bottom: 1em;
            border-bottom: 2px solid var(--border);
            padding-bottom: 10px;
        }

        .article-content h3 {
            font-family: "Orbitron", sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent2);
            margin-top: 2em;
            margin-bottom: 0.8em;
        }

        .article-content blockquote {
            background: var(--bg-card);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 1.5em 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 1.1em;
        }
        
        .article-content ul {
            list-style: none;
            padding-left: 20px;
            margin-bottom: 1.5em;
        }

        .article-content li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
        }

        .article-content li::before {
            content: "»";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
            font-family: "Share Tech Mono", monospace;
            font-size: 1.2em;
            line-height: 1;
        }

        .article-share {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid var(--border);
        }
        
        .share-title {
            font-family: "Orbitron", sans-serif;
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 15px;
            text-align: center;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border: 1px solid var(--border);
            background: var(--bg-card);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 5px;
            font-family: "Rajdhani", sans-serif;
            font-weight: 700;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .share-btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .share-twitter:hover { border-color: #1DA1F2; background: #1DA1F2; }
        .share-reddit:hover { border-color: #FF4500; background: #FF4500; }
        .share-copy:hover { border-color: var(--accent2); background: var(--accent2); }

        .article-back-link {
            display: block; 
            text-align: center;
            margin-top: 40px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            padding: 15px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            font-family: "Rajdhani", sans-serif;
            transition: all 0.3s;
        }

        .article-back-link:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
        }

                .article-active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
        }



.news-ticker-strip {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news-ticker-strip .container {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 20px;
}

.news-icon {
    color: var(--accent2);
    font-size: 18px;
    margin-right: 15px;
    animation: blink-light 1s infinite alternate;
}

.ticker-content {
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    display: flex;
}

.ticker-item {
    margin-right: 50px;
}

.ticker-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.ticker-link:hover {
    color: var(--text-primary);
}

.ticker-tag {
    background: var(--accent);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 12px;
    margin-right: 8px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent2);
    font-size: 28px;
    margin-bottom: 25px;
    border-left: 5px solid var(--accent);
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
    color: var(--accent);
}

.blink-pipe {
    animation: blink-pipe 1s infinite;
    font-size: 1em;
    font-weight: normal;
    color: var(--glitch2);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.news-card:hover {
    border-top-color: var(--accent2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.5);
}

.news-card.main-feature {
    grid-column: span 2;
    background: var(--bg-primary);
    border: 1px solid var(--accent);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.5);
}

.news-card.main-feature .card-content {
    padding: 25px;
}

.card-image-wrapper {
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    color: var(--glitch2);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    border: 1px solid var(--glitch2);
    padding: 1px 5px;
}

.news-card.main-feature .news-category {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.news-card h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 700;
}

.news-card.main-feature h3 {
    font-size: 24px;
}

.news-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.news-card h3 a:hover {
    color: var(--accent2);
}

.news-snippet {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
    border-top: 1px dashed var(--border);
    padding-top: 10px;
}

.news-meta i {
    margin-right: 5px;
    color: var(--accent);
}


@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes blink-light {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

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

.site-type-badge {
    display: inline-block;
    padding: 2px 6px;      
    border-radius: 4px;   
    font-size: 0.70rem;   
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
    transition: 0.3s ease;
}

.type-market {
    background: linear-gradient(135deg, #004d00, #008f39);
    border-color: #00c46b;
    box-shadow: 0 0 12px rgba(0, 196, 107, 0.4);
}

.type-forum {
    background: linear-gradient(135deg, #1a0033, #4b0082);
    border-color: #8a2be2;
    box-shadow: 0 0 12px rgba(138, 43, 226, 0.5);
}

.type-vendor {
    background: linear-gradient(135deg, #33001a, #8a004f);
    border-color: #ff00c8;
    box-shadow: 0 0 12px rgba(255, 0, 200, 0.5);
}

.type-other {
    background: linear-gradient(135deg, #222, #444);
    border-color: #666;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

