:root {
    --bg: #0f1420;
    --bg2: #161d2e;
    --surface: #1c253a;
    --border: #2c3548;
    --border-light: #3a465e;
    --accent: #1e8e5a;
    --accent-dark: #177049;
    --accent2: #c2202f;
    --accent3: #1a8a4a;
    --text: #e8ecf1;
    --muted: #a9b2c3;
    --mono: 'Segoe UI', Arial, Helvetica, sans-serif;
    --sans: 'Segoe UI', Arial, Helvetica, sans-serif;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-xs: 4px;
}


html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    transition: padding 0.2s ease, box-shadow 0.2s ease;
}

nav.scrolled {
    background: var(--bg);
    padding: 1rem 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: var(--sans);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.02em;
    text-decoration: none;
    z-index: 1001;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--accent); }

.mobile-menu-btn {
    display: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}


.result-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 7rem 20px 40px;
}


h1 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.domain {
    color: #7f899c;
    margin-bottom: 20px;
    font-size: 0.9em;
    word-break: break-all;
}

a.back {
    color: #6f9dff;
    text-decoration: none;
    font-size: 0.9em;
    display: inline-block;
    margin-bottom: 1rem;
}

a.back:hover { text-decoration: underline; }


.card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    max-width: 100%;
}


.row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #232c40;
    gap: 1rem;
    flex-wrap: wrap;
}

.row:last-child { border-bottom: none; }

.row span:first-child { color: var(--muted); }

.row strong { text-align: right; }


.badge {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: bold;
    font-size: 0.85em;
}

.badge-critical { background: #ff444433; color: #ff4444; }
.badge-high     { background: #ff880033; color: #ff8800; }
.badge-medium   { background: #ffcc0033; color: #ffcc00; }
.badge-low      { background: #1e8e5a33; color: #1e8e5a; }


.section-title {
    color: #6f9dff;
    font-weight: bold;
    margin: 20px 0 10px 0;
    font-size: 1.1em;
}

.card > .section-title:first-child { margin-top: 0; }


.indicator-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.indicator-list li {
    padding: 6px 12px;
    margin: 4px 0;
    background: #1a2233;
    border-radius: var(--radius-sm);
    border-left: 3px solid #ff4444;
    font-size: 0.9em;
    max-width: 100%;
    word-break: break-word;
}

.indicator-list li.safe    { border-left-color: #1e8e5a; color: #a7e3c1; }
.indicator-list li.warning { border-left-color: #ff8800; color: #ffcc88; }
.indicator-list li.info    { border-left-color: #6f9dff; color: #a9c2ff; }
.indicator-list li.known   { border-left-color: #4a9eff; color: #8ec5ff; opacity: 0.7; }


.indicator-list li { display: block; }

.ind-location {
    color: #ffcc88;
    font-size: 0.85em;
    margin-top: 4px;
}

.ind-location code {
    background: var(--bg);
    padding: 2px 6px;
    border-radius: var(--radius-xs);
    color: #ff9aa5;
    font-family: monospace;
    font-size: 0.9em;
    word-break: break-all;
}

.ind-context {
    background: var(--bg);
    border: 1px solid #232c40;
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    margin-top: 6px;
    font-size: 0.78em;
    color: #a9b2c3;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
    max-height: 140px;
    overflow-y: auto;
    max-width: 100%;
}


.script-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    margin: 8px 0;
    font-family: monospace;
    font-size: 0.8em;
    max-width: 100%;
    overflow-x: auto;
}

.script-url {
    color: #6f9dff;
    font-size: 0.85em;
    margin-bottom: 6px;
    word-break: break-all;
    line-height: 1.5;
}

.script-meta {
    color: #7f899c;
    font-size: 0.8em;
    margin-bottom: 8px;
}

.snippet {
    color: #a9b2c3;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: auto;
    background: #0a0e18;
    padding: 10px;
    border-radius: var(--radius-xs);
    border: 1px solid #1a2233;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.85em;
    line-height: 1.5;
}


.server-path {
    color: #ff8800;
    font-size: 0.85em;
    margin: 4px 0;
    padding: 6px 10px;
    background: #1a0f0f;
    border-radius: var(--radius-xs);
    border-left: 3px solid #ff4444;
    word-break: break-all;
}

.server-path code {
    color: #ff9aa5;
    font-weight: bold;
    word-break: break-all;
}

.external-badge {
    color: #6f9dff;
    font-size: 0.85em;
    margin: 4px 0;
}


.known-badge {
    display: inline-block;
    background: #1a3a5c;
    color: #6f9dff;
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    font-size: 0.75em;
    margin-left: 8px;
}

.critical-badge {
    display: inline-block;
    background: #3a1c22;
    color: #ff4444;
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    font-size: 0.75em;
    margin-left: 8px;
}


.chain-step {
    padding: 8px 12px;
    margin: 4px 0;
    background: #1a2233;
    border-radius: var(--radius-sm);
    font-size: 0.85em;
    word-break: break-word;
    max-width: 100%;
}

.chain-step .url {
    color: #6f9dff;
    word-break: break-all;
}

.chain-step .code {
    color: #ffcc00;
    font-weight: bold;
}


.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


.empty-state {
    color: #7f899c;
    font-style: italic;
    padding: 12px;
    text-align: center;
}

.cleanup-box {
    background: #2a1a1a;
    border: 1px solid #6b2530;
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
    max-width: 100%;
}

.cleanup-box .section-title { color: #ff4444; }

.cleanup-item {
    margin: 12px 0;
    padding: 16px;
    background: #1a0f0f;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
    max-width: 100%;
}

.cleanup-item .path {
    color: #ff9aa5;
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 10px;
    word-break: break-all;
}

.cleanup-item .cmd-label {
    color: #7f899c;
    font-size: 0.8em;
    margin-top: 8px;
}

.cleanup-item code {
    display: block;
    color: #a7e3c1;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.85em;
    background: var(--bg);
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    margin: 4px 0;
    word-break: break-all;
    overflow-x: auto;
    max-width: 100%;
    border: 1px solid #232c40;
}

.cleanup-warning {
    color: #ffcc00;
    font-size: 0.85em;
    margin-top: 12px;
    word-break: break-word;
}

.cleanup-warning code {
    background: var(--bg);
    padding: 2px 6px;
    border-radius: var(--radius-xs);
    font-family: monospace;
}


.dest-box {
    background: #1a0f0f;
    border: 1px solid #6b2530;
    border-radius: 8px;
    padding: 14px;
    margin: 8px 0;
    max-width: 100%;
}

.dest-box.malicious  { border-color: #ff4444; background: #2a1515; }
.dest-box.suspicious { border-color: #ff8800; background: #2a1f0f; }
.dest-box.noise      { border-color: var(--border); background: var(--bg); opacity: 0.6; }

.dest-host {
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 4px;
    word-break: break-all;
}

.dest-host.malicious  { color: #ff4444; }
.dest-host.suspicious { color: #ff8800; }
.dest-host.noise      { color: #7f899c; }

.dest-url {
    color: #a9b2c3;
    font-size: 0.8em;
    word-break: break-all;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    line-height: 1.5;
}

.dest-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    font-size: 0.75em;
    margin-top: 6px;
}

.dest-type.malicious  { background: #3a1c22; color: #ff4444; }
.dest-type.suspicious { background: #3a2a1c; color: #ff8800; }
.dest-type.noise      { background: #1a2233; color: #7f899c; }

.dest-score {
    color: #ffcc00;
    font-size: 0.85em;
    margin-top: 4px;
}

.dest-indicators { margin-top: 6px; }

.dest-indicators li {
    font-size: 0.8em;
    padding: 2px 8px;
    margin: 2px 0;
    background: #1a0f0f;
    border-radius: var(--radius-xs);
    border-left: 2px solid #ff4444;
    word-break: break-word;
}


.toggle-btn {
    background: #1a2233;
    color: #6f9dff;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85em;
    margin-top: 8px;
    font-family: var(--sans);
}

.toggle-btn:hover { background: #232c40; }

.toggle-content {
    display: none;
    margin-top: 8px;
}

.toggle-content.show { display: block; }


.gate {
    background: #1a2233;
    border: 1px dashed #3b4763;
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 20px;
    text-align: center;
    max-width: 100%;
}

.gate p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 0.95em;
}

.gate form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.gate input[type="email"] {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: #fff;
    width: 70%;
    min-width: 200px;
    font-family: var(--sans);
    font-size: 1em;
}

.gate input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.gate button {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 1em;
    white-space: nowrap;
}

.gate button:hover { background: var(--accent-dark); }

.success {
    background: #122a1e;
    border: 1px solid var(--accent);
    color: #a7e3c1;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}


@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }
    nav.scrolled {
        padding: 0.75rem 1.5rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.open a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }
    .mobile-menu-btn {
        display: block;
    }
    .result-main {
        padding: 6rem 16px 30px;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .gate input[type="email"] {
        width: 100%;
    }
    .gate button {
        width: 100%;
    }
    .gate form {
        flex-direction: column;
    }
    .row {
        flex-direction: column;
        gap: 4px;
    }
    .row strong {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .result-main {
        padding: 5.5rem 12px 20px;
    }
    .card {
        padding: 14px;
    }
    h1 {
        font-size: 1.2em;
    }
    .section-title {
        font-size: 1em;
    }
    .script-box {
        padding: 8px;
        font-size: 0.75em;
    }
    .snippet {
        font-size: 0.75em;
        padding: 8px;
    }
    .ind-context {
        font-size: 0.72em;
        padding: 6px 8px;
    }
    .cleanup-item {
        padding: 12px;
    }
    .cleanup-item code {
        font-size: 0.78em;
        padding: 6px 8px;
    }
    .dest-box {
        padding: 10px;
    }
    .gate {
        padding: 16px;
    }
    .chain-step {
        font-size: 0.8em;
        padding: 6px 10px;
    }
}


.wp-vuln-card {
    border: 1px solid var(--border);
}

.wp-vuln-alert {
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
    border-left: 4px solid;
}

.wp-vuln-alert.critical {
    background: #2a1515;
    border-color: #ff4444;
    border: 1px solid #6b2530;
    border-left: 4px solid #ff4444;
}

.wp-vuln-alert.safe {
    background: #122a1e;
    border-color: #1e8e5a;
    border: 1px solid #1e8e5a;
    border-left: 4px solid #1e8e5a;
}

.wp-vuln-alert.unknown {
    background: #2a2a1a;
    border-color: #ffcc00;
    border: 1px solid #ffcc00;
    border-left: 4px solid #ffcc00;
}

.wp-vuln-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.wp-vuln-icon {
    font-size: 1.4em;
}

.wp-vuln-title {
    font-weight: 700;
    font-size: 1.05em;
}

.wp-vuln-alert.critical .wp-vuln-title {
    color: #ff4444;
}

.wp-vuln-alert.safe .wp-vuln-title {
    color: #a7e3c1;
}

.wp-vuln-alert.unknown .wp-vuln-title {
    color: #ffcc00;
}

.wp-vuln-body p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text);
}

.wp-vuln-body p:last-child {
    margin-bottom: 0;
}

.wp-vuln-details {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px;
    margin: 12px 0;
}

.wp-vuln-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #232c40;
    font-size: 0.9em;
    flex-wrap: wrap;
    gap: 4px;
}

.wp-vuln-detail-row:last-child {
    border-bottom: none;
}

.wp-vuln-detail-row span:first-child {
    color: var(--muted);
}

.wp-vuln-detail-row code {
    background: #1a2233;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: #ff9aa5;
}

.wp-vuln-severity {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85em;
}

.severity-critical {
    background: #ff444433;
    color: #ff4444;
}

.severity-high {
    background: #ff880033;
    color: #ff8800;
}

.severity-medium {
    background: #ffcc0033;
    color: #ffcc00;
}

.severity-low {
    background: #1e8e5a33;
    color: #1e8e5a;
}

.wp-vuln-description {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px;
    margin: 12px 0;
}

.wp-vuln-description p {
    color: #e8ecf1;
    font-size: 0.92em;
}

.wp-vuln-references,
.wp-vuln-mitigation,
.wp-vuln-backports {
    margin: 14px 0;
}

.wp-vuln-references strong,
.wp-vuln-mitigation strong,
.wp-vuln-backports strong {
    color: #6f9dff;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.wp-vuln-references ul,
.wp-vuln-mitigation ul,
.wp-vuln-backports ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-vuln-references li,
.wp-vuln-mitigation li,
.wp-vuln-backports li {
    padding: 4px 0;
    font-size: 0.88em;
    color: var(--muted);
    word-break: break-word;
}

.wp-vuln-references a {
    color: #6f9dff;
    text-decoration: none;
}

.wp-vuln-references a:hover {
    text-decoration: underline;
}

.wp-vuln-mitigation code,
.wp-vuln-backports code {
    background: var(--bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: #ffcc88;
}

.wp-vuln-note {
    color: var(--muted);
    font-size: 0.9em;
    font-style: italic;
}

.safe-text {
    color: #a7e3c1;
    font-weight: bold;
}


@media (max-width: 900px) {
    .wp-vuln-detail-row {
        flex-direction: column;
        gap: 2px;
    }

    .wp-vuln-header {
        flex-wrap: wrap;
    }

    .wp-vuln-alert {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .wp-vuln-alert {
        padding: 10px;
        border-radius: 6px;
    }

    .wp-vuln-title {
        font-size: 0.95em;
    }

    .wp-vuln-description {
        padding: 10px;
    }

    .wp-vuln-details {
        padding: 8px;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }
    nav.scrolled {
        padding: 0.75rem 1.5rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .nav-links {
        display: none;
    }
    .nav-links.open {
          display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    z-index: 999;
    overflow-y: auto;
    }
    .nav-links.open a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    .stats-bar {
        padding: 1rem 1.5rem;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .scan-section {
        padding: 3rem 1.5rem;
    }
    .scan-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn-primary,
    .hero-cta .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    .stat-num {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .stats-bar {
        gap: 1rem;
        justify-content: space-between;
    }
    .scan-form {
        flex-direction: column;
    }
    .scan-form input[type="text"] {
        min-width: auto;
        width: 100%;
    }
    .scan-form button {
        width: 100%;
        justify-content: center;
    }
}


.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

footer {
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
    background: var(--bg2);  
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 3rem;
}

.footer-col h3 {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.footer-col p {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list li {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-links-list a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links-list a:hover { color: var(--accent); }

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    background: white;  
}

.social-links a:hover {
    border-color: var(--accent);
    color: white;
}

.social-links a i,
.social-links a svg {
    color: inherit;           
    font-size: 1rem;
    line-height: 1;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
}

.footer-bottom-links a:hover { color: var(--accent); }


@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .footer-bottom-links {
        display: none;  
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.stat-num {
    transition: color 0.3s ease;
}

.stat-num.counted {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(30, 142, 90, 0.3);
}
.gate textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(30, 142, 90, 0.25);
}

.back-btn:hover {
    background: var(--accent-dark);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 142, 90, 0.35);
}

.back-btn i {
    font-size: 0.9rem;
}

.back-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 4px rgba(30, 142, 90, 0.2);
}