html, body {
    background-color: #000 !important;
}

body.page-id-338 {
    margin: 0;
    padding: 0;
    background: #000;
    color: #00ff99;
    font-family: "COURIER NEW", monospace;
}

.safu-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.safu-title {
    width: 100%;
    margin-bottom: 32px;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.35rem;
    text-align: left;
    color: #ff4444;
    text-shadow:
        0 0 6px  #ff4444,
        0 0 12px #ff4444,
        0 0 18px #ff4444;
}

.safu-subtitle {
    margin-top: -18px;
    margin-bottom: 36px;
    font-size: 0.85rem;
    letter-spacing: 0.12rem;
    color: #00ffbb;
    opacity: 0.75;
    text-align: left;
    text-shadow:
        0 0 4px #00ffbb,
        0 0 10px #00ffbb;
}

#safu-url,
#safu-check-btn {
    font-weight: 800;
    text-align: center;
    line-height: 0.1;
    border-radius: 18px;
    box-shadow:
        0 0 6px  #00ff99,
        0 0 18px #00ff99,
        0 0 32px #00ff99;
}

#safu-check-btn:hover {
    box-shadow:
        0 0 10px #00ffaa,
        0 0 26px #00ffaa,
        0 0 40px #00ffaa;
}

/* Button click animation */
#safu-check-btn:active {
    transform: scale(0.96);
    box-shadow:
        0 0 14px #00ffaa,
        0 0 28px #00ffaa;
}

#safu-result {
    opacity: 0.7;
    width: 100%;
    border-radius: 14px;
    border: 2px solid #00ff99;
    box-shadow:
        0 0 4px #00ff99,
        0 0 14px #00ff99,
        0 0 26px #00ff99;
    min-height: 130px;
    padding: 18px 22px;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #00ffcc;
    background: rgba(0, 20, 10, 0.85);
    white-space: pre-wrap;
}

/* Scanning pulse on result box */
.safu-scanning {
    animation: safuPulse 1.2s infinite alternate;
}

@keyframes safuPulse {
    0% {
        box-shadow: 0 0 10px #00ff99, 0 0 24px #00ff99;
    }
    100% {
        box-shadow: 0 0 18px #00ffaa, 0 0 38px #00ffaa;
    }
}

/* Neon flash after scan completes */
.safu-flash {
    animation: safuFlash 0.45s ease-out;
}

@keyframes safuFlash {
    0% {
        box-shadow: 0 0 38px #00ffcc, 0 0 70px #00ffcc;
    }
    100% {
        box-shadow: 0 0 10px #00ff99, 0 0 22px #00ff99;
    }
}

/* Scanning loading text animation */
.safu-loading-text {
    color: #00ffcc;
    opacity: 0.75;
    font-style: italic;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

#safu-url {
    padding: 18px 20px;
    margin-bottom: 26px;
    color: #00ffcc;
    outline: none;
    width: 480px;
    font-size: 1.15rem;
}

#safu-url::placeholder {
    color: #00008B;
    opacity: 0.7;
}

#safu-check-btn {
    margin-bottom: 26px;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    background: #00ff99;
    color: #000;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}

.safu-social-bar {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 14px;
    z-index: 999;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 40px;
    height: 40px;
    color: #00ffbb;
    border: 1px solid #00ffbb;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s ease;
    box-shadow:
        0 0 6px #00ffbb,
        0 0 16px #00ffbb;
}

.social-icon:hover {
    color: #000;
    background: #00ffbb;
    box-shadow:
        0 0 8px #00ffbb,
        0 0 22px #00ffbb,
        0 0 32px #00ffbb;
    transform: translateY(-2px);
}

.icon-svg {
    width: 22px;
    height: 22px;
    fill: #00ffbb;
    filter: drop-shadow(0 0 6px #00ffbb) drop-shadow(0 0 16px #00ffbb);
    transition: 0.25s ease;
}

.social-icon:hover .icon-svg {
    fill: #000;
    filter: drop-shadow(0 0 10px #00ffbb) drop-shadow(0 0 22px #00ffbb);
}

.safu-disclaimer {
    width: 90%;
    max-width: 900px;
    margin: 40px auto 10px;
    padding: 14px 20px;
    font-size: 0.85rem;
    text-align: center;
    color: #00ffbb;
    opacity: 0.75;
    background: transparent;
    border: none;
}

.footer-links {
    margin-top: 10px;
    text-align: center;
}

.footer-btn {
    margin: 0 20px;
    padding: 6px 16px;
    color: #39ffbd;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s ease;
    border-radius: 6px;
}

.footer-btn:hover {
    background: #00ffbb;
    color: black;
    box-shadow: 0 0 12px #00ffbb;
}

/* ====================================================== */
/* Results helpers ONLY — no layout or sizing changes */
/* ====================================================== */

.safu-verdict {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.safu-verdict.safe {
    color: #00ff9c;
}

.safu-verdict.bad {
    color: #ff4444;
}

.safu-subtext {
    opacity: 0.85;
    margin-bottom: 10px;
}

.safu-scan-line {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.safu-ok { color: #00ff9c; }
.safu-warn { color: #ffcc00; }
.safu-bad { color: #ff4444; }
