@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

/* --- Reset & Roots --- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, q, em, img, small, strong, dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
    border: 0; outline: 0; margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { line-height: 1; padding-top: 0 !important; overflow-x: hidden; width: 100%; position: relative; }
ol, ul { list-style: none; }
:focus { outline: 0; }
input, textarea { margin: 0; outline: 0; }
textarea { overflow: auto; resize: none; }
table { border-collapse: collapse; border-spacing: 0; }
article, aside, details, figcaption, figure, footer, header, nav, section { display: block; }
*, *::after, *::before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

:root {
    --primary-color: #252839; --secondary-color: #01705C; --tertiary-color: #FFD249;
    --black-color: #000000; --white-color: #FFFFFF; --light-color: #F4F5F8; --text-color: #4F4F4F;
}

/* --- Default Font Styles --- */
body, input, select, textarea { font-family: "Poppins", sans-serif; font-size: 18px; color: var(--text-color); line-height: 1.4; background: var(--light-color); }
h1, h2, h3, h4, h5, h6 { font-family: "Epilogue", sans-serif; line-height: 1.25; margin-bottom: 25px; color: var(--primary-color); }
h1 { font-size: 65px; font-weight: 800; } h2 { font-size: 56px; font-weight: 700; } h3 { font-size: 20px; font-weight: 600; }
a { text-decoration: none; transition: 0.3s all; }
p { font-size: 18px; margin-bottom: 25px; }
img { display: block; max-width: 100%; }
button { display: block; cursor: pointer; transition: 0.3s all; }

/* --- Layout --- */
.container { width: 100%; max-width: 1350px; margin: 0 auto; padding: 0 15px; }
body.active { overflow: hidden; }
.bg-layer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.8); z-index: 999; display: none; }

/* --- Theme Buttons --- */
.theme-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 15px;
    font-size: 18px; font-weight: 500; color: var(--white-color);
    background: var(--secondary-color); box-shadow: 0 5px 20px 0 #01705C80;
    padding: 15px 25px; border-radius: 10px;
}
.theme-btn.theme-btn_alt { background: var(--tertiary-color); box-shadow: 0 5px 15px 0 #E76F5140; }
.theme-btn.row-reverse { flex-direction: row-reverse; }
.theme-btn:hover { opacity: 0.8; }
.theme-btn span { display: block; width: 16px; }

/* Specific Button Overrides extracted from index.php */
.whatsapp-btn {
    width: 100%; 
    background-color: #25D366; 
    border-color: #25D366; 
    justify-content: center; 
    gap: 10px;
}
.whatsapp-btn svg { width: 24px; height: 24px; fill: white; }

/* --- Header --- */
.header-wrap { position: sticky; left: 0; right: 0; top: 0; background: #333644; z-index: 1000; transition: all 0.3s ease; width: 100%; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header { display: flex; align-items: center; justify-content: center; transition: padding 0.3s; padding: 20px 0; position: relative; }
.header-wrap.active .header { padding: 15px 0; }
a.main__logo { display: block; width: 100%; max-width: 400px; transition: max-width 0.3s; z-index: 2; position: relative; }
.header-wrap.active .header a.main__logo { max-width: 350px; }

/* Sticky Stats Logic */
.header-stats {
    display: flex; align-items: center; gap: 25px; position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%) translateY(20px); opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.1); padding: 8px 20px;
    border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.1); z-index: 1;
}
.header-wrap.stats-visible .header-stats { opacity: 1; visibility: visible; transform: translate(-50%, -50%) translateY(0); }
.h-stat-group { display: flex; flex-direction: column; line-height: 1; }
.h-label { font-size: 10px; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); font-weight: 600; letter-spacing: 0.5px; }
.h-value { font-family: "Epilogue", sans-serif; font-weight: 700; color: var(--tertiary-color); font-size: 18px; }
.theme-btn.theme-btn_sm { padding: 8px 20px; font-size: 14px; min-height: auto; box-shadow: none; }

/* Menu elements */
.header__list { display: flex; align-items: center; margin: 0 -25px; }
.header__list li { padding: 0 25px; }
.header__list a { font-size: 16px; font-weight: 500; color: var(--white-color); }
.header__list li:last-child a { color: var(--primary-color); border-radius: 100px; padding: 11px 30px; }
.header__list a:hover { color: var(--tertiary-color); }

/* --- Support Section --- */
.support-wrap { padding: 90px 0 72px; background: #2E3433; margin-bottom: 0; position: relative; color: var(--white-color); }
.support { display: flex; flex-direction: column; gap: 50px; }
.support-content-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.support_info { flex: 0 1 550px; padding-right: 0; }
.support_info h2 { color: var(--white-color); font-size: 45px; }
.support_info em { display: block; font-size: 16px; color: var(--white-color); margin-bottom: 25px; }

/* Highlight for countdown extracted from index.php */
.days-highlight { color: #e74c3c; font-weight: 700; }

.support__box {
    flex: 0 0 600px; max-width: 600px; background: var(--white-color);
    border-radius: 30px; padding: 30px 40px; border-bottom: 10px solid var(--tertiary-color);
    text-align: center; box-shadow: -10px -10px 40px 0px #00000014; color: var(--primary-color);
}
.support__box p { color: var(--text-color); }

.support-footer-row { display: flex; align-items: center; gap: 0; padding-top: 40px; margin-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.social__sharing { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; padding-right: 50px; }
.social__sharing h3 { color: var(--white-color); margin-bottom: 20px; font-size: 18px; white-space: nowrap; }
.social__sharing ul { display: flex; flex-direction: column !important; gap: 15px; padding: 0; margin: 0; }
.social__sharing ul a {
    display: flex; align-items: center; justify-content: center; width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; transition: all 0.3s ease;
}
.social__sharing ul a svg { width: 24px; height: 24px; fill: var(--white-color); }
.support-text { flex: 1; padding-left: 50px; border-left: 1px solid rgba(255, 255, 255, 0.2); }
.support-text p { color: rgba(255, 255, 255, 0.9); font-size: 18px; line-height: 1.6; margin-bottom: 20px; max-width: 850px; }
.support-text p:last-child { margin-bottom: 0; }

.social__sharing ul a.social-fb:hover { background: rgba(24, 119, 242, 0.1); border-color: #1877F2; }
.social__sharing ul a.social-fb:hover svg { fill: #1877F2; }
.social__sharing ul a.social-x:hover { background: rgba(255, 255, 255, 0.1); border-color: #FFFFFF; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }
.social__sharing ul a.social-x:hover svg { fill: #FFFFFF; }
.social__sharing ul a.social-wa:hover { background: rgba(37, 211, 102, 0.1); border-color: #25D366; }
.social__sharing ul a.social-wa:hover svg { fill: #25D366; }
.social__sharing ul a.social-ig:hover { background: rgba(225, 48, 108, 0.1); border-color: #E1306C; }
.social__sharing ul a.social-ig:hover svg { fill: #E1306C; }
.social__sharing ul a:hover { transform: translateY(-5px); }

/* --- MAIN GOAL BOX --- */
.goal__box {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 16px; border: 1px solid var(--white-color);
    border-radius: 15px; background: #FFFFFF14; backdrop-filter: blur(6px);
    margin-bottom: 25px; width: 100%;
}
.goal__box li {
    font-family: "Epilogue", sans-serif; font-size: 30px; font-weight: 700;
    color: var(--white-color); line-height: 1.4; padding: 0 19px;
    position: relative; flex: 1; text-align: center;
}
.goal__box li::after {
    content: ""; position: absolute; right: 0; bottom: 10px; width: 1px; height: 30px; background: var(--white-color);
}
.goal__box li:last-child::after { display: none; }
.goal__box li span { display: block; color: var(--tertiary-color); font-size: 24px; }

/* Progress Bar */
.fundraising-status-area {
    margin-bottom: 60px !important;
    position: relative;
    padding-top: 20px;
}

.progress-container {
    position: relative; width: 100%; height: 25px; background-color: #444444;
    border-radius: 100px; overflow: hidden; margin: 0 0 25px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(to right, transparent 24.5%, rgba(255, 255, 255, 0.1) 25%, transparent 25.5%, transparent 49.5%, rgba(255, 255, 255, 0.1) 50%, transparent 50.5%, transparent 74.5%, rgba(255, 255, 255, 0.1) 75%, transparent 75.5%);
}
.progress-bar {
    height: 100%; width: 0%; background-color: var(--tertiary-color);
    transition: width 1.5s ease-in-out; border-radius: 100px;
    box-shadow: 0 0 10px rgba(255, 210, 73, 0.4);
}
#progress-text {
    position: absolute; width: 100%; top: 0; left: 0; text-align: center;
    line-height: 25px;
    font-size: 14px; font-weight: 700; color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); pointer-events: none;
    z-index: 2;
}

/* --- RECENT DONATIONS --- */
.recent-donations-wrap { margin: 20px 0 30px; }
.recent-donations-wrap h3 { color: var(--white-color); margin-bottom: 15px; position: relative; display: inline-flex; align-items: center; }
.recent-donations-wrap h3::after {
    content: ''; display: inline-block; width: 10px; height: 10px;
    background-color: #e74c3c; border-radius: 50%; margin-left: 12px;
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); animation: liveDotPulse 2s infinite; vertical-align: middle;
}
@keyframes liveDotPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(231, 76, 60, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

ul.goal__box.recent-donations-list {
    border: none !important; background: transparent !important; backdrop-filter: none !important;
    padding: 0 !important; gap: 15px !important; display: flex !important;
    flex-direction: row !important; flex-wrap: nowrap !important;
    align-items: stretch !important; overflow: visible !important;
}
ul.goal__box.recent-donations-list li::after { display: none !important; }
ul.goal__box.recent-donations-list li {
    background: rgba(1, 112, 92, 0.15) !important; border: 1px solid rgba(1, 112, 92, 0.4) !important;
    border-radius: 12px !important; padding: 15px 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important; margin: 0 !important;
    flex: 1 1 0px !important; display: flex !important;
    flex-direction: column !important; justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: default;
}
ul.goal__box.recent-donations-list li:hover {
    transform: translateY(-8px) scale(1.03); border-color: var(--tertiary-color) !important;
    background: rgba(255, 255, 255, 0.1) !important; box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5) !important; z-index: 10;
}
.donation-meta {
    display: block !important; color: rgba(255, 255, 255, 0.9) !important;
    font-size: 10px !important; font-weight: 700; text-transform: uppercase;
    white-space: nowrap !important; overflow: hidden; text-overflow: ellipsis; margin-bottom: 5px;
}
.donation-amount {
    display: block !important; color: var(--tertiary-color) !important;
    font-size: 20px !important; font-weight: 800 !important; font-family: "Epilogue", sans-serif;
}
@keyframes cardPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 210, 73, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 210, 73, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 210, 73, 0); }
}
.new-donation-pulse { animation: cardPulse 2s infinite; border-color: var(--tertiary-color) !important; }

/* Donation Form Styling */
.support__box h3 { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.support__box h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; text-align: left; }
.support__box p { font-size: 16px; }

form.support__form { width: 100%; }
.support-field__box { position: relative; margin-bottom: 25px; }
.support-field__box label { display: block; width: 20px; position: absolute; top: 50%; left: 45px; transform: translate(0, -50%); }
.support-field__box input, .support-field__box select {
    width: 100%; border: 1px solid transparent; border-radius: 100px;
    padding: 22px 45px 22px 81px; appearance: none;
    color: var(--primary-color); background: var(--light-color) url('../images/drop-down-icon.svg') no-repeat right 45px center/ 14px;
    font-weight: 500;
}
.support-field__box input { background: var(--light-color); }
.support-field__box input:focus, .support-field__box select:focus { opacity: 1; border-color: var(--primary-color); }

.checkbox__field { display: flex; align-items: start; margin: 0 0 10px 10px; }
.checkbox__field input { margin-top: 3px; }
.checkbox__field label { width: auto; font-size: 14px; padding-left: 15px; text-align: left; }
.support__form button { width: 100%; border-radius: 100px; border: 0; padding: 29px 48px; }

.support-tabs { display: flex; gap: 15px; justify-content: center; align-items: stretch; margin-bottom: 25px; }
.support-tab {
    display: block; font-size: 16px; border: 1px solid var(--primary-color);
    border-radius: 6px; padding: 5px 10px; color: var(--primary-color);
}
.support-tab:hover, .support-tab.active { color: #ffffff; border-color: var(--secondary-color); background: var(--secondary-color); }
.tab-detail { display: none; }
.tab-detail.active { display: block; }

.radio-outer { display: flex; align-items: stretch; justify-content: center; gap: 15px; flex-wrap: wrap; }
.radio-btn { width: 100%; max-width: 31%; min-width: 130px; position: relative; overflow: hidden; height: 40px; }
.radio-btn.other-amount { min-width: 150px; }
.radio-btn label {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: #333644; margin-bottom: 0; position: relative; z-index: 1; top: auto; left: auto;
    transform: none; cursor: pointer; text-align: center;
}
.radio-btn label span { display: block; margin-right: 4px; }
.radio-btn label::before {
    content: ''; display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%;
    background: transparent; border: 1px solid #333644; border-radius: 6px; z-index: -1;
}
.radio-btn input { display: none; }
.radio-btn input:checked + label { color: #ffffff; }
.radio-btn input:checked + label::before { background: #333644; }

/* Vectors */
.support-wrap .vector__one { display: block; width: 30px; position: absolute; left: 25%; top: 5%; opacity: 0.5; }
.support-wrap .vector__two { display: block; width: 44px; position: absolute; right: 6%; top: 17%; opacity: 0.5; }
.support-wrap .vector__three { display: block; width: 46px; position: absolute; left: 4%; bottom: 5%; opacity: 0.5; }
.support-wrap .vector__four { display: block; width: 34px; position: absolute; right: 2%; bottom: 20%; opacity: 0.5; }

/* Payment Details Popups */
.donate__outer { display: flex; align-items: center; justify-content: center; gap: 25px; margin-bottom: 25px; }
h4.other-donate { padding-top: 15px; border-top: 1px solid var(--light-color); text-align: center; }
.donate__box { width: 25%; }
.donate-icon__detail, .donate__icon { display: block; width: 100%; max-width: 70px; margin: 0 auto; cursor: pointer; }

.donate__detail {
    position: fixed; left: 50%; top: 50%; padding: 0 15px; transform: translate(-50%, -50%);
    z-index: 9999; width: 100%; max-width: 896px; height: 100vh;
    display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.3s all;
}
.donate__detail.active { opacity: 1; visibility: visible; }
.donate-detail__box {
    position: relative; width: 100%; height: 100%; max-height: 578px; margin: 0 auto;
    background: var(--white-color); border-radius: 8px; overflow: auto; padding: 24px;
}
.donate-inner__box { text-align: left; }
.donate-detail__box h3 { text-align: left; font-size: 18px; margin-bottom: 40px; }

.close-detail { position: absolute; top: 15px; right: 15px; width: 16px; height: 16px; cursor: pointer; opacity: 0.6; }
.close-detail:hover { opacity: 1; }
.close-detail::after, .close-detail::before {
    content: ""; position: absolute; left: 0; top: 50%; width: 100%; height: 2px;
    background: var(--primary-color); transform: translate(0, -50%) rotate(45deg);
}
.close-detail::after { transform: translate(0, -50%) rotate(-45deg); }

.donate__field {
    display: flex; align-items: center; justify-content: start; padding: 8px;
    border-bottom: 1px solid #e5e7eb; gap: 5px; transition: background 0.3s;
}
.donate__field:last-child { border-bottom: 0; }
.donate__field:hover { background: #f1f6f6; }
.donate__field.donate__field--alt {
    width: 100%; max-width: 252px; margin: 0 auto; gap: 0; background: transparent; padding: 0; border-bottom: 0; flex-wrap: wrap;
}
.donate__field h4, .donate__field label {
    width: 100%; max-width: 247px; text-align: left; font-size: 14px; font-weight: 400; margin-bottom: 0;
}
.donate__field input {
    width: 100%; max-width: 320px; font-size: 14px; padding: 6px 12px;
    border: 1px solid #e5e7eb; border-radius: 8px; background: transparent; color: var(--primary-color);
}
.donate__field input:focus { border-color: #2563eb; }
.donate__field ul { margin-left: 12px; }
.donate__field ul li { text-align: left; font-size: 14px; color: var(--primary-color); list-style-type: disc; }
.donate-detail__box p { text-align: left; font-size: 14px; color: var(--primary-color); }
.donate__field p { margin-bottom: 0; font-size: 14px; color: var(--primary-color); }

.copy-btn {
    display: block; min-width: 33px; min-height: 36px; padding: 8px;
    border: 1px solid #e5e7eb; border-radius: 4px; cursor: pointer;
    background: transparent url('../images/copy-icon.svg') no-repeat center/ 15px; transition: background 0.3s;
}
.copy-btn.copied { background-image: url('../images/check.svg'); }
.copy-btn:hover { background-color: #e6e9ea; }
button.all-copy {
    font-size: 14px; border: 1px solid #e5e7eb; border-radius: 8px; padding: 8px 16px;
    background: transparent; display: inline-flex; justify-content: start; margin: 0 0 0; width: auto; text-align: left; margin-top: 25px;
}
button.all-copy:hover { background: #e6e9ea; color: #4a5455; }

.qr-detail {
    display: flex; align-items: start; justify-content: space-between;
    width: 100%; max-width: 650px; margin: 0 auto; gap: 25px; flex-wrap: wrap;
}
.qr__img { width: 100%; margin-bottom: 12px; }
.qr__img img { width: 100%; }
.copy__box { display: flex; align-items: center; gap: 5px; }

/* --- Service / Appeal --- */
.lead__info { text-align: center; margin-bottom: 65px; }
.lead__info h2 { text-transform: capitalize; margin-bottom: 0; }
.lead__info em { display: block; font-size: 16px; font-style: normal; font-weight: 500; color: var(--secondary-color); text-transform: uppercase; margin-bottom: 10px; }
.lead__info h2 span { color: var(--secondary-color); }

.service-wrap { padding: 72px 0; }
.service { display: flex; align-items: center; justify-content: center; }
.service__video {
    width: 100%; max-width: 872px; position: relative; padding-bottom: 42%; border-radius: 20px; overflow: hidden;
}
.service__video video, .service__video iframe {
    position: absolute; left: 0; right: 0; top: 0; bottom: 0; width: 100%; height: 100%; object-fit: cover;
}
.service__video span {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 85px; height: 85px; outline: 15px solid rgba(255, 210, 73, 0.5);
    border-radius: 100px; background: var(--tertiary-color) url('../images/video-play-icon.svg') no-repeat center/ 24px; transition: 0.3s;
}
.service__video.active span { opacity: 0; visibility: hidden; }
.service__video:hover.active span { opacity: 1; visibility: visible; }
.service__box {
    width: 100%; max-width: 560px; padding: 57px 45px 48px;
    background: var(--white-color); box-shadow: 0px 8px 40px 0px #00000014;
    border-radius: 20px; margin-left: -112px; z-index: 5;
}
.service__box h3 { font-size: 24px; margin-bottom: 19px; }
.service__box p { font-size: 16px; }
.service__box .theme-btn { font-size: 16px; }

/* --- Footer --- */
.footer-wrap { padding: 52px 0 30px; background: var(--primary-color); }
.footer {
    display: flex; align-items: start; justify-content: space-between; flex-wrap: wrap;
    padding-bottom: 28px; margin-bottom: 30px; border-bottom: 1px solid var(--light-color);
}
.ft__description { width: 100%; max-width: 245px; }
.ft__description a.main__logo { margin-bottom: 35px; }
.ft__description p { font-size: 14px; font-weight: 500; color: var(--white-color); margin-bottom: 0; }

.ft__box { width: 22%; }
.ft__box h3 { color: var(--white-color); margin-bottom: 30px; }
.ft__list li { padding-bottom: 18px; }
.ft__list li:last-child { padding-bottom: 0; }
.ft__list a {
    font-size: 14px; font-weight: 500; color: var(--white-color); display: inline-flex; align-items: center; gap: 8px;
}
.ft__list a:hover { color: var(--tertiary-color); }
.ft__list a svg { width: 16px; height: 16px; fill: var(--white-color); }
.ft__list a:hover svg { fill: var(--tertiary-color); }
.ft__list a span {
    width: 36px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 100px; background: #FFFFFF33;
}
.ft__box.newsletter { width: 100%; max-width: 300px; }
form.newsletter__form { position: relative; margin-bottom: 54px; }
form.newsletter__form input {
    width: 100%; border: 0; border-radius: 5px; padding: 13px 95px 13px 20px;
    font-size: 12px; font-weight: 500; background: var(--white-color);
}
form.newsletter__form input::placeholder { color: #C1C1C1; }
form.newsletter__form button {
    position: absolute; top: 50%; right: 6px; transform: translate(0, -50%);
    font-size: 12px; border: 0; padding: 9px 23px; border-radius: 5px;
}
.ft__box.newsletter .follow__links { justify-content: start; }
.follow__links { display: flex; align-items: center; justify-content: center; gap: 10px; }
.follow__links a { display: block; width: 30px; height: 30px; }
.follow__links a svg { display: block; width: 100%; height: 100%; fill: var(--secondary-color); transition: fill 0.3s; }
.follow__links a:hover svg { fill: var(--tertiary-color); }
.ft__box.newsletter .follow__links a svg { fill: var(--white-color); }
.ft__box.newsletter .follow__links a:hover svg { fill: var(--tertiary-color); }
.copyright { font-size: 16px; color: var(--white-color); text-align: center; margin-bottom: 0; }

.follow__links li a.social-tt:hover svg { fill: #ff0050 !important; filter: drop-shadow(2px 0px 0px #00f2ea); }
.follow__links li a.social-x:hover svg { fill: #FFFFFF !important; }
.follow__links li a.social-ig:hover svg { fill: #E1306C !important; }
.follow__links li a.social-yt:hover svg { fill: #FF0000 !important; }
.follow__links li a svg { transition: all 0.3s ease !important; }
.follow__links li a:hover { transform: translateY(-3px); }

.thanks-info { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; height: 100vh; }
.thanks-info h1 { font-size: 50px; }

/* --- Milestones Section --- */
.milestones-row {
    position: relative;
    width: 100%;
    height: 50px;
    margin-top: 5px;
}
.milestone-tick {
    position: absolute;
    top: -5px;
    width: 2px;
    height: 15px;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
}
.milestone-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 800;
    color: var(--tertiary-color);
    font-family: "Epilogue", sans-serif;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}
.milestone-tick:first-child .milestone-text { transform: translateX(0); left: 0; }
.milestone-tick:last-child .milestone-text { transform: translateX(-100%); left: 0; }
.milestone-tick.achieved {
    background: #78C2AD !important;
    box-shadow: 0 0 5px rgba(120, 194, 173, 0.6);
}
.milestone-tick.achieved .milestone-text {
    color: #78C2AD !important;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
    transition: color 0.8s ease, text-shadow 0.8s ease;
}

/* --- Support Stats Container --- */
#Remaining, #Raised, #Goal {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

#Remaining .label-text {
    color: #e74c3c !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* --- Money Wrapper --- */
.money-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    justify-content: center !important;
    white-space: nowrap !important;
    color: #ffffff !important;
    font-weight: 700;
    line-height: 1.2 !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.money-wrapper > span {
    margin-right: 4px;
    font-size: 1em !important;
    font-weight: inherit;
    display: inline-block !important;
}

/* --- SUBTLE COLOR HIERARCHY --- */
#Remaining .money-wrapper { color: #ffffff !important; }
#Remaining .money-wrapper > span { color: #ffffff !important; }
#Raised .money-wrapper, #Goal .money-wrapper { color: rgba(255, 255, 255, 0.85) !important; }
#Raised .money-wrapper > span, #Goal .money-wrapper > span { color: rgba(255, 255, 255, 0.85) !important; }

/* --- TICKER ENGINE CSS --- */
.ticker-view {
    display: inline-flex !important;
    align-items: baseline !important;
    vertical-align: baseline !important;
}
.ticker-view-digit {
    display: inline-block !important;
    position: relative !important;
    overflow: hidden !important;
    height: 1.2em !important;
    line-height: 1.2em !important;
    vertical-align: baseline !important;
}
.ticker-column {
    display: flex !important;
    flex-direction: column !important;
    transition: none !important;
    transform: translateY(0);
}
.ticker-column.animating {
    transition: transform 3.5s cubic-bezier(0.15, 0.88, 0.3, 1) !important;
}
.ticker-digit {
    height: 1.2em !important;
    line-height: 1.2em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: "Epilogue", sans-serif !important;
    color: inherit !important;
}
.ticker-comma {
    display: inline-block !important;
    color: inherit !important;
    font-family: "Epilogue", sans-serif !important;
    font-size: 0.8em !important;
    margin: 0 1px !important;
    vertical-align: baseline !important;
}

/* --- UPDATE STATE (GOLD FLASH) --- */
.money-wrapper.is-updating .ticker-digit,
.money-wrapper.is-updating .ticker-comma {
    color: var(--tertiary-color) !important;
    text-shadow: 0 0 25px rgba(255, 210, 73, 0.8);
}
.money-wrapper.is-updating { transform: scale(1.05); }

/* --- SIZING OVERRIDES --- */
#Remaining .money-wrapper { font-size: 52px !important; }
#Raised .money-wrapper, #Goal .money-wrapper { font-size: 30px !important; }
#Goal, #Raised { transform: scale(0.95); }