        :root {
            --sj-pink: #ff2a7f;
            --sj-pink-soft: #ff63a6;
            --sj-blue: #18b6ff;
            --sj-purple: #7a2bff;
            --sj-bg-dark: #050510;
            --sj-bg-light: #f5f7ff;
            --sj-card-dark: #101020;
            --sj-card-light: #ffffff;
            --sj-text-light: #fafbff;
            --sj-text-dark: #111322;
            --sj-border-subtle: rgba(255,255,255,0.08);
            --sj-radius-lg: 24px;
            --sj-radius-md: 18px;
            --sj-radius-pill: 999px;
            --sj-shadow-soft: 0 18px 45px rgba(0,0,0,0.55);
            --sj-shadow-glow: 0 0 40px rgba(255,42,127,0.5), 0 0 60px rgba(24,182,255,0.45);
            --sj-transition-fast: 0.18s ease-out;
            --sj-transition-med: 0.28s ease-out;
        }

        /* THEME HANDLING */
        body[data-theme="dark"] {
            --sj-bg: var(--sj-bg-dark);
            --sj-card: var(--sj-card-dark);
            --sj-text-primary: var(--sj-text-light);
            --sj-text-secondary: rgba(240,242,255,0.76);
            --sj-border: rgba(255,255,255,0.08);
        }

        body[data-theme="light"] {
            --sj-bg: var(--sj-bg-light);
            --sj-card: var(--sj-card-light);
            --sj-text-primary: var(--sj-text-dark);
            --sj-text-secondary: rgba(25,30,45,0.76);
            --sj-border: rgba(10,15,30,0.08);
        }

        * {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
            min-height: 100%;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
            background: var(--sj-bg-gradient);
            color: var(--sj-text-primary);
            overflow-x: hidden;
        }

        body {
            background-color: var(--sj-bg);
        }

        /* LOADING OVERLAY */

        #loader-overlay {
            position: fixed;
            inset: 0;
            background: radial-gradient(circle at top, #2b0b52 0, #050510 55%, #000 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        #loader-overlay.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            color: #fff;
        }

        .loader-drip {
            width: 70px;
            height: 70px;
            border-radius: 40% 60% 70% 30%;
            background: conic-gradient(from 180deg, var(--sj-pink), var(--sj-blue), var(--sj-purple), var(--sj-pink));
            filter: drop-shadow(0 0 20px rgba(255,42,127,0.85));
            animation: drip-pulse 1.3s ease-in-out infinite;
            position: relative;
        }

        .loader-drip::after {
            content: "";
            position: absolute;
            width: 28px;
            height: 28px;
            left: 50%;
            transform: translateX(-50%);
            bottom: -12px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 20%, #fff 0, #ffe4f3 12%, var(--sj-pink) 40%, #41041f 100%);
            opacity: 0.9;
        }

        @keyframes drip-pulse {
            0%, 100% {
                transform: translateY(0) scale(1);
                border-radius: 40% 60% 70% 30%;
            }
            40% {
                transform: translateY(5px) scale(1.04);
                border-radius: 55% 45% 65% 35%;
            }
            70% {
                transform: translateY(-5px) scale(0.98);
                border-radius: 35% 65% 40% 60%;
            }
        }

        .loader-text {
            font-size: 0.9rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            opacity: 0.8;
        }

        /* PARTICLE BACKGROUND */

        #bg-canvas {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .gradient-overlay {
            position: fixed;
            inset: -20%;
            background:
                radial-gradient(circle at 15% 0%, rgba(255,42,127,0.22), transparent 60%),
                radial-gradient(circle at 85% 15%, rgba(24,182,255,0.24), transparent 55%),
                radial-gradient(circle at 15% 80%, rgba(122,43,255,0.2), transparent 55%);
            mix-blend-mode: screen;
            opacity: 0.85;
            animation: bg-shift 24s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes bg-shift {
            0% {
                transform: translate3d(0,0,0) scale(1);
            }
            100% {
                transform: translate3d(0,-20px,0) scale(1.05);
            }
        }

        /* LAYOUT */

        .page {
            position: relative;
            min-height: 100vh;
            padding: 20px clamp(18px, 3vw, 32px) 40px;
            display: flex;
            flex-direction: column;
        }

        .page-inner {
            max-width: 1120px;
            margin: 0 auto;
            width: 100%;
        }

        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 32px;
        }

        .brand-mini {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-size: 0.86rem;
            color: var(--sj-text-secondary);
        }

        .brand-mini-pill {
            width: 9px;
            height: 24px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--sj-pink), var(--sj-blue));
            box-shadow: 0 0 16px rgba(255,42,127,0.6);
        }

        .theme-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 6px;
            border-radius: var(--sj-radius-pill);
            border: 1px solid var(--sj-border);
            background: linear-gradient(135deg, rgba(10,10,30,0.9), rgba(5,5,15,0.95));
            box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 18px 40px rgba(0,0,0,0.65);
            cursor: pointer;
            position: relative;
        }

        .theme-toggle span {
            font-size: 1.05rem;
            opacity: 0.72;
            transition: var(--sj-transition-fast);
        }

        .theme-toggle span.active {
            opacity: 1;
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.8));
            transform: translateY(-1px);
        }

        .theme-toggle-knob {
            position: absolute;
			display: none;
            width: 36px;
            height: 26px;
            border-radius: var(--sj-radius-pill);
            background: radial-gradient(circle at 30% 20%, #fff, #ffe4f3 24%, var(--sj-pink) 55%, #1e0824 100%);
            top: 3px;
            left: 4px;
            transition: var(--sj-transition-med);
            z-index: -1;
            box-shadow: 0 0 18px rgba(255,42,127,0.8);
        }

        body[data-theme="light"] .theme-toggle-knob {
            left: 34px;
            background: radial-gradient(circle at 30% 20%, #fff 0, #fff7cf 22%, #ffd96a 55%, #403008 100%);
            box-shadow: 0 0 18px rgba(255,238,176,0.95);
        }

        body[data-theme="light"] .theme-toggle {
            background: linear-gradient(135deg, #ffffff, #f3f4ff);
        }

		body[data-theme="light"] #iconLight {
			opacity: 1;
			filter: drop-shadow(0 0 10px rgba(255,255,255,0.8));
		}

		body[data-theme="light"] #iconDark {
			opacity: 0.45;
		}

		body[data-theme="dark"] #iconDark {
			opacity: 1;
		}

		body[data-theme="dark"] #iconLight {
			opacity: 0.45;
		}

        /* HERO */

        .hero {
            text-align: center;
            margin-bottom: 40px;
        }

        .hero-logo-wrap {
            margin: 0 auto 20px;
            max-width: 420px;
        }

        .hero-logo-wrap img {
            width: 100%;
            height: auto;
            display: block;
            filter: drop-shadow(0 16px 50px rgba(0,0,0,0.9)) drop-shadow(0 0 40px rgba(255,42,127,0.6));
        }

        .hero-tagline {
            font-size: clamp(1.8rem, 3.4vw, 2.4rem);
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 12px;
            background: linear-gradient(90deg, var(--sj-pink), var(--sj-blue), var(--sj-purple));
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-sub {
            max-width: 580px;
            margin: 0 auto;
            font-size: 0.98rem;
            color: var(--sj-text-secondary);
        }

        /* HIGHLIGHTS STRIP */

        .highlight-strip {
            margin: 40px auto 32px;
            padding: 12px;
            border-radius: var(--sj-radius-pill);
            background: linear-gradient(90deg, rgba(255,42,127,0.25), rgba(24,182,255,0.3), rgba(122,43,255,0.3));
            box-shadow: 0 0 28px rgba(255,42,127,0.5);
            position: relative;
            overflow: hidden;
        }

        .highlight-strip-inner {
            display: grid;
            grid-template-columns: repeat(4, minmax(0,1fr));
            gap: 8px;
        }

        .highlight-pill {
            border-radius: var(--sj-radius-pill);
            padding: 10px 16px;
            background: rgba(5,6,18,0.88);
            border: 1px solid rgba(255,255,255,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #fefbff;
            white-space: nowrap;
        }

        .highlight-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: radial-gradient(circle, #fff 0, #ffe4f3 40%, var(--sj-pink) 100%);
            box-shadow: 0 0 14px rgba(255,42,127,0.95);
        }

        @media (max-width: 820px) {
            .highlight-strip-inner {
                grid-template-columns: repeat(2, minmax(0,1fr));
            }
        }

        @media (max-width: 540px) {
            .highlight-strip-inner {
                grid-template-columns: repeat(1, minmax(0,1fr));
            }
			.highlight-strip {
				padding: 10px;
				border-radius: 20px;
			}
			.highlight-pill {
				font-size: 0.78rem;
				padding: 9px 14px;
			}
        }

        /* SECTIONS */

        section {
            margin-bottom: 36px;
        }

        .section-label {
            font-size: 0.78rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--sj-text-secondary);
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-sub {
            font-size: 0.96rem;
            color: var(--sj-text-secondary);
            max-width: 560px;
        }

        /* SERVICES */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0,1fr));
            gap: 18px;
            margin-top: 20px;
        }

        @media (max-width: 960px) {
            .services-grid {
                grid-template-columns: repeat(2, minmax(0,1fr));
            }
        }

        @media (max-width: 720px) {
            .services-grid {
                grid-template-columns: minmax(0,1fr);
            }
        }

        .service-card {
            position: relative;
            border-radius: var(--sj-radius-lg);
            padding: 18px 18px 18px;
            background: linear-gradient(145deg, rgba(10,10,30,0.95), rgba(5,8,36,0.98));
            border: 1px solid var(--sj-border);
            box-shadow: var(--sj-shadow-soft);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transform: translateY(0);
            transition: transform var(--sj-transition-med), box-shadow var(--sj-transition-med), border-color var(--sj-transition-med);
        }

        body[data-theme="light"] .service-card {
            background: linear-gradient(145deg, #fdfdff, #edf0ff);
            box-shadow: 0 18px 40px rgba(19,32,80,0.22);
        }

        .service-card::before {
            content: "";
            position: absolute;
            inset: -30%;
            background:
                radial-gradient(circle at 0 0, rgba(255,42,127,0.18), transparent 55%),
                radial-gradient(circle at 100% 20%, rgba(24,182,255,0.16), transparent 55%);
            opacity: 0;
            transition: opacity var(--sj-transition-med);
            pointer-events: none;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--sj-shadow-glow);
            border-color: rgba(255,42,127,0.8);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-pill {
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            padding: 4px 10px;
            border-radius: var(--sj-radius-pill);
            background: rgba(0,0,0,0.6);
            border: 1px solid rgba(255,255,255,0.14);
            color: rgba(255,255,255,0.86);
            align-self: flex-start;
        }

        body[data-theme="light"] .service-pill {
            background: rgba(255,255,255,0.92);
            color: #111322;
        }

        .service-title {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .service-desc {
            font-size: 0.9rem;
            color: var(--sj-text-secondary);
            flex: 1;
        }

        .service-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-top: 8px;
        }

        .service-meta small {
            font-size: 0.75rem;
            color: var(--sj-text-secondary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 16px;
            border-radius: var(--sj-radius-pill);
            border: none;
            cursor: pointer;
            font-size: 0.86rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: var(--sj-transition-med);
            text-decoration: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--sj-pink), var(--sj-blue));
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(255,42,127,0.7);
        }

        .btn-primary:hover {
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 15px 40px rgba(255,42,127,0.85);
        }

        .btn-ghost {
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.86);
            border: 1px dashed rgba(255,255,255,0.35);
            cursor: default;
        }

        body[data-theme="light"] .btn-ghost {
            background: rgba(250,250,255,0.9);
            color: #70708a;
            border-color: rgba(110,110,140,0.35);
        }

        /* LIVE STATS */

        .stats-wrapper {
            margin-top: 18px;
            padding: 16px;
            border-radius: var(--sj-radius-lg);
            background: linear-gradient(135deg, rgba(6,10,40,0.98), rgba(10,6,40,0.98));
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: var(--sj-shadow-soft);
        }

        body[data-theme="light"] .stats-wrapper {
            background: linear-gradient(135deg, #ffffff, #ebefff);
            border-color: rgba(10,10,50,0.1);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0,1fr));
            gap: 16px;
        }

        @media (max-width: 820px) {
            .stats-grid {
                grid-template-columns: repeat(2, minmax(0,1fr));
            }
        }

        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: minmax(0,1fr);
            }
        }

        .stat-card {
            padding: 10px 12px;
            border-radius: 18px;
            background: radial-gradient(circle at 0 0, rgba(255,42,127,0.2), rgba(10,10,30,0.96));
            border: 1px solid rgba(255,255,255,0.16);
        }

        body[data-theme="light"] .stat-card {
            background: radial-gradient(circle at 0 0, rgba(255,42,127,0.12), #ffffff);
            border-color: rgba(20,20,70,0.18);
        }

        .stat-label {
            font-size: 0.78rem;
            color: var(--sj-text-secondary);
            margin-bottom: 6px;
        }

        .stat-number {
            font-size: 1.3rem;
            font-weight: 700;
        }

        /* FOOTER & LINKS */

        footer {
            margin-top: 40px;
            padding-top: 18px;
            border-top: 1px solid var(--sj-border);
            font-size: 0.8rem;
            color: var(--sj-text-secondary);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-link {
            cursor: pointer;
            text-decoration: none;
            color: var(--sj-text-secondary);
        }

        .footer-link:hover {
            color: var(--sj-pink-soft);
        }

        /* MODALS (POLICIES & COOKIES) */

        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(3,3,8,0.82);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .modal-backdrop.visible {
            display: flex;
        }

        .modal {
            width: min(520px, 90vw);
            max-height: 80vh;
            overflow: hidden;
            border-radius: 22px;
            background: linear-gradient(145deg, #0b0d25, #030311);
            border: 1px solid rgba(255,255,255,0.14);
            box-shadow: 0 22px 80px rgba(0,0,0,0.85);
            color: #fefbff;
            position: relative;
        }

        body[data-theme="light"] .modal {
            background: linear-gradient(145deg, #ffffff, #f1f2ff);
            color: #101323;
            border-color: rgba(0,0,40,0.16);
        }

        .modal-header {
            padding: 16px 18px 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        body[data-theme="light"] .modal-header {
            border-bottom-color: rgba(0,0,40,0.08);
        }

        .modal-title {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .modal-body {
            padding: 14px 18px 16px;
            font-size: 0.9rem;
            line-height: 1.5;
            max-height: 50vh;
            overflow-y: auto;
        }

        .modal-footer {
            padding: 12px 18px 14px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        body[data-theme="light"] .modal-footer {
            border-top-color: rgba(0,0,40,0.08);
        }

        .modal-close {
            position: absolute;
            right: 14px;
            top: 12px;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0.65;
        }

        .modal-close:hover {
            opacity: 1;
        }

        /* COOKIE BANNER */

        .cookie-banner {
            position: fixed;
            left: 50%;
            bottom: 18px;
            transform: translateX(-50%);
            width: min(540px, 94vw);
            background: linear-gradient(135deg, #050516, #0e071d);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.18);
            box-shadow: 0 18px 55px rgba(0,0,0,0.92);
            color: #fefbff;
            padding: 14px 16px 14px;
            z-index: 1800;
            display: none;
        }

        body[data-theme="light"] .cookie-banner {
            background: linear-gradient(135deg, #ffffff, #edf0ff);
            color: #111323;
            border-color: rgba(0,0,40,0.18);
        }

        .cookie-banner.visible {
            display: block;
        }

        .cookie-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .cookie-text {
            font-size: 0.82rem;
            margin-bottom: 8px;
        }

        .cookie-links {
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .cookie-links a {
            color: var(--sj-pink-soft);
            cursor: pointer;
            text-decoration: underline;
        }

        .cookie-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: flex-end;
        }

        .btn-small {
            padding: 7px 13px;
            font-size: 0.78rem;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.55);
            color: #fefbff;
        }

        body[data-theme="light"] .btn-outline {
            border-color: rgba(10,10,40,0.7);
            color: #111323;
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.06);
        }

        /* COOKIE PREFERENCES CONTENT */

        .cookie-category {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            font-size: 0.87rem;
        }

        body[data-theme="light"] .cookie-category {
            border-bottom-color: rgba(0,0,40,0.07);
        }

        .cookie-category:last-of-type {
            border-bottom: none;
        }

        .cookie-cat-label {
            font-weight: 500;
        }

        .cookie-cat-sub {
            font-size: 0.8rem;
            color: var(--sj-text-secondary);
        }

        .cookie-toggle {
            position: relative;
            width: 42px;
            height: 22px;
        }

        .cookie-toggle input {
            opacity: 0;
            position: absolute;
        }

        .cookie-toggle span {
            position: absolute;
            inset: 0;
            border-radius: 999px;
            background: rgba(255,255,255,0.14);
            transition: var(--sj-transition-fast);
        }

        .cookie-toggle span::after {
            content: "";
            position: absolute;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #ffffff;
            top: 2px;
            left: 3px;
            transition: var(--sj-transition-fast);
            box-shadow: 0 3px 10px rgba(0,0,0,0.35);
        }

        .cookie-toggle input:checked + span {
            background: linear-gradient(135deg, var(--sj-pink), var(--sj-blue));
        }

        .cookie-toggle input:checked + span::after {
            transform: translateX(18px);
        }

        .cookie-toggle input[disabled] + span {
            background: rgba(180,180,190,0.5);
        }

        .cookie-toggle input[disabled] + span::after {
            background: #f1f1f1;
        }

        /* RESPONSIVE ADJUSTMENTS */

        @media (max-width: 640px) {
            header {
                flex-direction: row;
                align-items: center;
            }
            .hero {
                margin-top: 8px;
            }
            .hero-logo-wrap {
                max-width: 280px;
            }
            .hero-sub {
                font-size: 0.9rem;
            }
            footer {
                flex-direction: column;
                align-items: flex-start;
            }
        }
		
		body[data-theme="dark"] {
			--sj-bg-gradient: radial-gradient(circle at top, #1a0530 0, #050510 60%, #000 100%);
		}

		body[data-theme="light"] {
			--sj-bg-gradient: radial-gradient(circle at top, #ffffff 0, #f3f4ff 55%, #e6e9ff 100%);
		}

/* SUPPORTERS SECTION */
.supporters-wrapper {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

@media(max-width: 860px) {
    .supporters-wrapper {
        grid-template-columns: 1fr;
    }
}

.donate-card,
.supporter-wall {
    border-radius: var(--sj-radius-lg);
    padding: 22px;
    background: linear-gradient(145deg, rgba(10,10,30,0.95), rgba(5,8,36,0.98));
    border: 1px solid var(--sj-border);
    box-shadow: var(--sj-shadow-soft);
}

body[data-theme="light"] .donate-card,
body[data-theme="light"] .supporter-wall {
    background: linear-gradient(145deg, #ffffff, #edf0ff);
}

.donate-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.donate-progress {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    margin-bottom: 10px;
}

.donate-btn {
  	margin-top: 10px;
}

.donate-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sj-pink), var(--sj-blue));
    box-shadow: 0 0 12px rgba(255,42,127,0.8);
}

.donate-meta {
    font-size: 0.85rem;
    color: var(--sj-text-secondary);
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
}

.donate-label {
    font-size: 0.85rem;
    margin-top: 12px;
    display: block;
    color: var(--sj-text-secondary);
}

.donate-input {
    width: 100%;
    margin-top: 4px;
    padding: 10px;
    border-radius: var(--sj-radius-md);
    border: 1px solid var(--sj-border);
    background: rgba(255,255,255,0.05);
    color: var(--sj-text-primary);
}

.supporter-wall .wall-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.supporter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 12px;
}

.supporter-tile {
    padding: 14px;
    border-radius: var(--sj-radius-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: 0.25s ease;
    text-decoration: none;
    color: var(--sj-text-primary);
}

.supporter-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--sj-shadow-glow);
    border-color: var(--sj-pink);
}

.supporter-name {
    font-weight: 600;
    color: var(--sj-pink-soft);
}

.supporter-amount {
    font-size: 0.85rem;
    color: var(--sj-text-secondary);
}

.supporter-empty {
    padding: 18px;
    border-radius: var(--sj-radius-md);
    border: 1px dashed var(--sj-border);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ================================
   SUPPORTERS HERO
   ================================ */

.supporters-hero {
    position: relative;
    padding: 120px 0 160px;
    margin-top: 80px;
    overflow: hidden;
    border-radius: 35px;
}

/* BACKGROUND FX ---------------------------------------- */

.supporters-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -10%,
        rgba(255,42,127,0.35),
        rgba(24,182,255,0.25),
        transparent 70%);
    z-index: 1;
}

.supporters-bg-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(60px);
    z-index: 2;
}

/* Particles canvas */
#supportersParticles {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.4;
}
#supportersParticles {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* INNER ---------------------------------------- */

.supporters-inner {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* TITLE & SUB */

.supporters-hero-title {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.supporters-hero-sub {
    max-width: 700px;
    margin: 0 auto 40px;
}

/* SUPPORTERS WALL HERO -------------------------------- */

.supporters-wall-hero {
    margin: 0 auto;
    padding: 48px;
    border-radius: 40px;
    background: linear-gradient(
        145deg,
        rgba(10, 0, 25, 0.60),
        rgba(4, 0, 18, 0.55)
    );
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(32px);

    /* Rounder, softer shape */
    box-shadow:
        inset 0 0 45px rgba(255,255,255,0.06),
        0 18px 60px rgba(0,0,0,0.55),
        0 0 85px rgba(255,42,127,0.25),
        0 0 120px rgba(24,182,255,0.15);
}

/* Light mode version */
body[data-theme="light"] .supporters-wall-hero {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.85),
        rgba(245,245,255,0.75)
    );
    border: 1px solid rgba(0,0,30,0.1);
    box-shadow:
        inset 0 0 35px rgba(255,255,255,0.8),
        0 18px 40px rgba(0,0,0,0.06),
        0 0 70px rgba(255,42,127,0.12);
}

.wall-title-hero {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.wall-sub {
    opacity: 0.7;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

/* SUPPORTER GRID HERO */

.supporter-grid-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    padding: 10px 0;
}

.supporter-tile-hero {
    padding: 20px;
    border-radius: var(--sj-radius-lg);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    text-decoration: none;
    transition: 0.3s;
}

body[data-theme="light"] .supporter-tile-hero {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,30,0.1);
}

.supporter-tile-hero:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 0 30px rgba(255,42,127,0.45),
        0 0 60px rgba(24,182,255,0.35);
    border-color: var(--sj-pink);
}

.supporter-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sj-pink-soft);
}

.supporter-amount {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* EMPTY STATE */
.supporter-empty-hero {
    margin-top: 25px;
    opacity: 0.75;
}

.donate-panel-hero {
    margin: 50px auto 0;
    max-width: 700px;
    padding: 40px;
    border-radius: 34px;
    background: linear-gradient(
        145deg,
        rgba(0,0,22,0.50),
        rgba(0,0,10,0.42)
    );
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(24px);
}

body[data-theme="light"] .donate-panel-hero {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,30,0.08);
}
.supporters-arc {
    position: absolute;
    top: -160px;
    left: 0;
    width: 100%;
    height: 420px;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(255,42,127,0.28),
        rgba(24,182,255,0.18),
        transparent 70%
    );
    opacity: 0.7;
    filter: blur(70px);
    z-index: 1;
}

body[data-theme="light"] .supporters-arc {
    opacity: 0.45;
}
/* ========================================= */
/* STREAMJUICE — Blog Preview Cards          */
/* ========================================= */

.blog-preview-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.blog-preview-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(10,10,30,0.96), rgba(5,8,36,0.98));
    border: 1px solid var(--sj-border);
    border-radius: var(--sj-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--sj-text-primary);
    box-shadow: var(--sj-shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

body[data-theme="light"] .blog-preview-card {
    background: linear-gradient(140deg, #ffffff, #f2f5ff);
    border-color: rgba(20,20,60,0.15);
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,42,127,0.85);
    box-shadow: var(--sj-shadow-glow);
}

.blog-preview-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.blog-preview-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-preview-content {
    padding: 16px 18px 20px;
}

.blog-preview-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.blog-preview-excerpt {
    font-size: .88rem;
    color: var(--sj-text-secondary);
    margin-bottom: 10px;
    line-height: 1.45;
}

.blog-preview-date {
    font-size: .78rem;
    color: var(--sj-text-secondary);
    opacity: 0.8;
}

.blog-preview-more-wrap {
    margin-top: 28px;
    text-align: center;
}
