:root {
    --accent: #00ff80;
    --accent2: #00a552;
    --text: #eafff4;
    --muted: #7be6b5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Share Tech Mono', monospace;
}

body {
    background: #0b0b0b;
    color: var(--text);
}

.card strong{
    color: #00ff80;
}

.no-season-warning {
    width: 100%;
    height: 100%;
    max-height: 800px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.warning-card {
    width: 100%;
    background: rgba(0, 255, 85, 0.116);
    border: 1px solid rgba(1, 134, 34, 0.897);
    color: #fff;
    padding: 20px 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

/* SKULL BACKGROUND */
.warning-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../skull.png") center center / cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.warning-card i {
    font-size: 22px;
    color: #ff002b;
    position: relative;
    z-index: 2;
}

.warning-card span {
    position: relative;
    z-index: 2;
    font-weight: 600;
    letter-spacing: 0.2px;
}


.left-panel {
    display: flex;
    flex-direction: column;
}


/* NAVBAR */
.navbar {
    padding: 20px;

    background: rgb(0, 0, 0);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 255, 204, 0.25);

    display: flex;
    justify-content: space-between;
    align-items: start;

}


.navbar-inner {
    display: flex;
    justify-content: space-around;
    align-items: start;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-logo img {
    width: 80px;
    border-radius: 50%;

}

.nav-logo span {
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--accent);
}

/* WARNING TEXT */
.navbar-warning {
    padding: 0 30px;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    max-width: 70%;
}

.navbar-warning p {
    font-size: 15px;
    line-height: 1.6;
    color: white;
    letter-spacing: .5px;
}


/* LAYOUT */
.container {
    max-width: 1400px;
    margin: auto;
    padding: 40px 20px;
}

.layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
}

/* VICTIM IMAGE */
.victim {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.neon-border {
    position: relative;
    padding: 6px;
    border-radius: 24px;
}

.neon-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background:
        linear-gradient(90deg,
            transparent 0%,
            var(--accent) 20%,
            transparent 40%,
            transparent 60%,
            var(--accent2) 80%,
            transparent 100%);
    background-size: 300% 100%;
    animation: ledMove 3s linear infinite;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.neon-border img {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    max-width: 100%;
}

@keyframes ledMove {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 300% 50%;
    }
}


/* PROGRESS */
.progress-wrapper {
    max-width: 800px;
    margin: auto;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: clamp(12px, 2vw, 15px);
    color: var(--muted);
}

.progress-bar {
    height: 24px;
    background: #020617;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 204, .25);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.fund-stats {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(0, 255, 204, .15);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.stat .icon {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
    text-shadow: 0 0 12px rgba(0, 255, 204, .8);
}

.stat .value {
    font-size: 18px;
    color: var(--accent);
    display: block;
}

.stat .label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* DONATE ICON */
.donate-btn i {
    margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .fund-stats {
        grid-template-columns: 1fr;
    }
}


/* COUNTER */
.counter {
    text-align: center;
    font-size: clamp(32px, 6vw, 60px);
    margin-top: 20px;
    color: var(--accent);
}

.sub {
    text-align: center;
    font-size: clamp(11px, 2vw, 13px);
    color: var(--muted);
}

/* DONATE */
.donate-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    align-items: center;
}

.donate-btn {
    width: auto;
    min-width: 220px;
    padding: 12px 22px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    background: linear-gradient(120deg, var(--accent), var(--accent2));
    box-shadow: 0 0 25px rgba(0, 255, 128, .7);
    letter-spacing: 2px;
    transition: .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
}

.donate-btn:hover {
    transform: scale(1.03);
}

.donate-input-wrapper {
    display: flex;
    opacity: 0;
    transform: translateY(-10px);
    transition: all .25s ease;
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.donate-input-wrapper.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#donateAmount {
    width: 100%;
    max-width: 220px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .6);
    color: var(--text);
    outline: none;
    transition: .25s;
}

#donateAmount:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 255, 128, .3);
}

#donateConfirmBtn {
    padding: 12px 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    background: linear-gradient(120deg, var(--accent), var(--accent2));
    box-shadow: 0 0 20px rgba(0, 255, 128, .55);
    letter-spacing: 1px;
    transition: .25s;
}

#donateConfirmBtn:hover {
    transform: scale(1.03);
}

#donateConfirmBtn:active {
    transform: scale(0.98);
}

.donate-cancel-btn {
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .5);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .25s;
}

.donate-cancel-btn:hover {
    background: rgba(255, 0, 100, .15);
    border-color: rgba(255, 0, 100, .35);
}

.donate-cancel-btn:active {
    transform: scale(0.98);
}

/* Chrome, Edge, Safari */
#donateAmount::-webkit-outer-spin-button,
#donateAmount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
#donateAmount[type=number] {
    -moz-appearance: textfield;
}


/* RESPONSIVE */
@media(max-width:768px) {
    .donate-btn {
        min-width: 180px;
        font-size: 13px;
    }

    #donateAmount {
        max-width: 160px;
    }

    .donate-input-wrapper {
        gap: 8px;
        flex-wrap: wrap;
    }
}


/* RIGHT PANEL */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background: rgba(15, 15, 15, .85);
    border: 1px solid rgba(0, 255, 204, .15);
    border-radius: 16px;
    padding: 20px;
}

.card h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: clamp(16px, 3vw, 18px);
}

.card p {
    font-size: clamp(13px, 2.5vw, 14px);
    color: var(--muted);
}

/* DONATION LIST */
.donation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donation-list li {
    display: grid;
    grid-template-columns: 1fr auto auto;
    font-size: clamp(12px, 2vw, 13px);
    padding: 10px;
    background: rgba(0, 0, 0, .45);
    border-radius: 10px;
}

.donation-list li span {
    padding-left: 10px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .layout {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.site-footer {
    margin-top: 80px;
    width: 100%;
    background: #000;
    border-top: 1px solid rgba(0, 255, 204, .15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-inner {
    display: flex;
    align-items: stretch;
    min-height: 120px;
}

/* LEFT IMAGE */
.footer-image {
    position: relative;
    min-width: 160px;
    overflow: hidden;
}

.footer-image img {
    height: 100%;
    max-width: 160px;
    width: auto;
    object-fit: cover;
    filter: brightness(.9) drop-shadow(0 0 20px rgba(0, 255, 204, .25));
}

/* FADE TO BLACK */
.fade-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #000 90%);
}

/* WARNING TEXT */
.footer-warning {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 30px;
    background: #000;
}

.footer-warning p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .5px;
    max-width: 900px;
}

/* RESPONSIVE */
@media (max-width: 993px) {
    .no-season-warning {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-image img {
        filter: brightness(.9) drop-shadow(0 0 20px rgba(86, 122, 115, 0));
    }

    .fade-overlay {
        display: none;
    }

    .footer-warning {
        padding: 20px;
        text-align: center;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .navbar-warning {
        display: flex;
        max-width: 100%;
    }

    .container {
        padding: 0px 20px;
    }
}