:root {
    --color-primary: #2dd36f;
    --color-primary-rgb: 45, 211, 111;
}
.nexus-gradient {
    background: linear-gradient(45deg, #2dd36f, #1cb058);
}
.nexus-glow {
    box-shadow: 0 0 15px rgba(45, 211, 111, 0.5);
}
.nexus-border {
    border: 1px solid rgba(45, 211, 111, 0.3);
}
.mirror-list {
    font-family: monospace;
    word-break: break-all;
}
.mirror-status {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
.mirror-status.online {
    background-color: #2dd36f;
    box-shadow: 0 0 5px #2dd36f;
}
.mirror-status.offline {
    background-color: #ff5050;
    box-shadow: 0 0 5px #ff5050;
}
.pgp-box {
    background: rgba(20, 20, 30, 0.5);
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.85rem;
    padding: 1rem;
    max-height: 150px;
    overflow-y: auto;
    word-break: break-all;
}
.nexus-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.nexus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.verification-steps li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}
.verification-steps li::before {
    content: "→";
    color: var(--color-primary);
    position: absolute;
    left: 0;
}
.header-anchor {
    scroll-margin-top: 80px;
}
body {
    scroll-behavior: smooth;
}
.category-badge {
    background: rgba(45, 211, 111, 0.15);
    color: #2dd36f;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500;
}
.feature-icon {
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(45, 211, 111, 0.15);
    color: #2dd36f;
    margin-right: 10px;
}
.timeline-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 24px;
}
.timeline-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2dd36f;
}
.timeline-item:after {
    content: "";
    position: absolute;
    left: 5.5px;
    top: 12px;
    bottom: -24px;
    width: 1px;
    background: rgba(45, 211, 111, 0.4);
}
.timeline-item:last-child:after {
    display: none;
}
.review-card {
    position: relative;
}
.review-card:before {
    content: """;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 60px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(45, 211, 111, 0.2);
}
.announcement-ticker {
    white-space: nowrap;
    overflow: hidden;
}
.announcement-ticker span {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 20s linear infinite;
}
@keyframes ticker {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.nexus-image-container {
    max-width: 800px;
    position: relative;
    margin: 0 auto;
}

.nexus-screenshot {
    width: 100%;
    border: 1px solid rgba(45, 211, 111, 0.3);
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.nexus-screenshot:hover {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

.nexus-screenshot {
    position: relative;
}

.nexus-screenshot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.1);
    pointer-events: none;
    border-radius: 0.5rem;
}
@media (max-width: 768px) {
    .nexus-image-container {
        max-width: 100%;
    }

    .nexus-screenshot {
        margin-bottom: 1rem;
    }
}
.crypto-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.crypto-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.crypto-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btc-icon {
    background: rgba(247, 147, 26, 0.15);
}

.xmr-icon {
    background: rgba(255, 102, 0, 0.15);
}

.ltc-icon {
    background: rgba(176, 176, 176, 0.15);
}

.crypto-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.dauntlink-profile {
    border: 1px solid rgba(45, 211, 111, 0.2);
    box-shadow: 0 0 20px rgba(45, 211, 111, 0.05);
}

.verified-badge {
    display: flex;
    align-items: center;
    background: rgba(45, 211, 111, 0.15);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
}

.verified-badge svg {
    color: #2dd36f;
    margin-right: 0.25rem;
}

.verified-badge span {
    color: #2dd36f;
    font-weight: 600;
    font-size: 0.875rem;
}