
        :root {
            --primary: #d20a11;
            --on-primary: #ffffff;
            --background: #131313;
            --on-background: #e4e2e1;
            --surface: #131313;
            --on-surface: #e4e2e1;
            --on-surface-variant: #e7bdb7;
            --surface-container-high: #2a2a2a;
            --surface-container-low: #1b1c1c;
            --surface-container-lowest: #0e0e0e;
            --outline-variant: #5d3f3b;
            --outline: #ae8883;
            --margin-desktop: 64px;
            --margin-mobile: 20px;
            --font-inter: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        .sting-page-fundraising, .sting-page-fundraising * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .sting-page-fundraising {
            background-color: var(--background);
            color: var(--on-background);
            font-family: var(--font-inter);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Layout Helpers */
        .sting-page-fundraising .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 var(--margin-mobile);
        }

        @media (min-width: 768px) {
            .sting-page-fundraising .container {
                padding: 0 var(--margin-desktop);
            }
        }

        /* Navigation */
        .sting-page-fundraising nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            background-color: rgba(19, 19, 19, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--outline-variant);
        }

        .sting-page-fundraising .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 64px;
        }

        .sting-page-fundraising .nav-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sting-page-fundraising .nav-brand img {
            height: 40px;
            width: auto;
        }

        .sting-page-fundraising .nav-brand span {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: -0.05em;
            text-transform: uppercase;
        }

        .sting-page-fundraising .nav-links {
            display: none;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .sting-page-fundraising .nav-links {
                display: flex;
            }
        }

        .sting-page-fundraising .nav-links a {
            text-decoration: none;
            color: var(--on-surface-variant);
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 0.1em;
            transition: color 0.2s;
        }

        .sting-page-fundraising .nav-links a.active {
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 4px;
        }

        .sting-page-fundraising .btn-nav {
            background: var(--primary);
            color: var(--on-primary);
            border: none;
            padding: 10px 24px;
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: filter 0.2s;
        }

        /* Hero Section */
        .sting-page-fundraising .hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            overflow: hidden;
            margin-top: 64px;
        }

        .sting-page-fundraising .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .sting-page-fundraising .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(1);
            transition: filter 0.7s;
        }

        .sting-page-fundraising .hero:hover .hero-bg img {
            filter: grayscale(0);
        }

        .sting-page-fundraising .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--background) 0%, rgba(19,19,19,0.6) 50%, transparent 100%);
            z-index: 1;
        }

        .sting-page-fundraising .hero-tint {
            position: absolute;
            inset: 0;
            background-color: var(--primary);
            mix-blend-mode: overlay;
            opacity: 0.2;
            z-index: 1;
        }

        .sting-page-fundraising .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .sting-page-fundraising .hero-tag-wrap {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .sting-page-fundraising .hero-tag {
            background: var(--primary);
            color: var(--on-primary);
            padding: 4px 12px;
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 900;
        }

        .sting-page-fundraising .hero-line {
            height: 1px;
            flex-grow: 1;
            background: rgba(210, 10, 17, 0.3);
        }

        .sting-page-fundraising .hero h1 {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .sting-page-fundraising .hero h1 {
                font-size: 72px;
            }
        }

        .sting-page-fundraising .hero-date {
            color: var(--primary);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 2rem;
            letter-spacing: 0.05em;
        }

        .sting-page-fundraising .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .sting-page-fundraising .hero-actions {
                flex-direction: row;
                align-items: center;
            }
        }

        .sting-page-fundraising .hero-desc {
            max-width: 400px;
            color: var(--on-surface-variant);
            font-family: var(--font-mono);
            font-size: 12px;
            line-height: 1.6;
        }

        .sting-page-fundraising .btn-hero {
            background: var(--primary);
            color: var(--on-primary);
            padding: 16px 40px;
            text-decoration: none;
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 10px 30px rgba(210, 10, 17, 0.2);
            width: fit-content;
        }

        /* Purchase Section */
        .sting-page-fundraising .purchase-section {
            padding: 80px 0;
            border-top: 1px solid var(--outline-variant);
            background-image: 
                linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .sting-page-fundraising .grid-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .sting-page-fundraising .grid-layout {
                grid-template-columns: 7fr 5fr;
            }
        }

        .sting-page-fundraising .section-title {
            font-size: 48px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .sting-page-fundraising .section-subtitle {
            font-size: 18px;
            color: var(--on-surface-variant);
            margin-bottom: 3rem;
        }

        /* Progress Bar */
        .sting-page-fundraising .progress-container {
            margin-bottom: 3rem;
        }

        .sting-page-fundraising .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 1rem;
        }

        .sting-page-fundraising .progress-label {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 700;
        }

        .sting-page-fundraising .progress-val {
            color: var(--primary);
            font-size: 24px;
            font-weight: 900;
        }

        .sting-page-fundraising .progress-track {
            height: 12px;
            background: var(--surface-container-high);
            width: 100%;
        }

        .sting-page-fundraising .progress-fill {
            height: 100%;
            background: var(--primary);
            width: 75%;
        }

        /* Ticket Counter */
        .sting-page-fundraising .ticket-box {
            background: var(--surface-container-low);
            border: 1px solid rgba(248, 249, 250, 0.1);
            padding: 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            margin-bottom: 3rem;
        }

        .sting-page-fundraising .ticket-box::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
        }

        .sting-page-fundraising .counter-label {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--on-surface-variant);
            margin-bottom: 2rem;
        }

        .sting-page-fundraising .counter-controls {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .sting-page-fundraising .btn-round {
            width: 64px;
            height: 64px;
            border: 1px solid rgba(248, 249, 250, 0.1);
            background: transparent;
            color: var(--on-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .sting-page-fundraising .btn-round:hover {
            background: var(--primary);
            color: var(--on-primary);
        }

        .sting-page-fundraising .ticket-input {
            width: 120px;
            background: transparent;
            border: none;
            font-size: 72px;
            font-weight: 900;
            text-align: center;
            color: var(--on-surface);
            outline: none;
        }

        .sting-page-fundraising .price-display {
            color: var(--primary);
            font-size: 32px;
            font-weight: 900;
        }

        /* Payment Forms */
        .sting-page-fundraising .form-section {
            margin-bottom: 2rem;
        }

        .sting-page-fundraising .form-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .sting-page-fundraising .payment-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .sting-page-fundraising .payment-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .sting-page-fundraising .payment-radio {
            display: none;
        }

        .sting-page-fundraising .payment-card {
            border: 1px solid rgba(248, 249, 250, 0.1);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .sting-page-fundraising .payment-radio:checked + .payment-card {
            border-color: var(--primary);
            background: var(--surface-container-high);
        }

        .sting-page-fundraising .payment-card .material-symbols-outlined {
            font-size: 32px;
        }

        .sting-page-fundraising .payment-text {
            display: flex;
            flex-direction: column;
        }

        .sting-page-fundraising .payment-label {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 700;
        }

        .sting-page-fundraising .payment-sub {
            font-size: 10px;
            color: var(--on-surface-variant);
            text-transform: uppercase;
        }

        /* Input Field */
        .sting-page-fundraising .text-input-wrap {
            border-bottom: 1px solid var(--outline);
            transition: border-color 0.2s;
        }

        .sting-page-fundraising .text-input-wrap:focus-within {
            border-bottom-color: var(--primary);
        }

        .sting-page-fundraising .text-input {
            width: 100%;
            background: transparent;
            border: none;
            padding: 16px 0;
            color: var(--on-surface);
            font-family: var(--font-mono);
            font-size: 12px;
            outline: none;
        }

        .sting-page-fundraising .text-input::placeholder {
            color: var(--outline-variant);
        }

        /* Order Summary Card */
        .sting-page-fundraising .summary-card {
            background: var(--surface-container-high);
            border: 1px solid var(--outline-variant);
            padding: 48px;
            position: sticky;
            top: 100px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        .sting-page-fundraising .summary-bg-icon {
            position: absolute;
            top: -32px;
            right: -32px;
            width: 128px;
            height: 128px;
            opacity: 0.1;
            transform: rotate(12deg);
            filter: grayscale(1) invert(1);
        }

        .sting-page-fundraising .summary-title {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--outline-variant);
            margin-bottom: 1.5rem;
        }

        .sting-page-fundraising .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .sting-page-fundraising .summary-item-label {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
        }

        .sting-page-fundraising .summary-item-sub {
            font-size: 12px;
            opacity: 0.7;
        }

        .sting-page-fundraising .summary-qty {
            font-size: 24px;
            font-weight: 900;
        }

        .sting-page-fundraising .total-box {
            background: var(--surface-container-lowest);
            border: 1px solid var(--outline-variant);
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 3rem 0;
        }

        .sting-page-fundraising .total-label {
            font-size: 24px;
            font-weight: 700;
        }

        .sting-page-fundraising .total-amount {
            color: var(--primary);
            font-size: 32px;
            font-weight: 900;
        }

        .sting-page-fundraising .btn-checkout {
            width: 100%;
            background: var(--primary);
            color: var(--on-primary);
            border: none;
            padding: 24px;
            font-size: 24px;
            font-weight: 800;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(210, 10, 17, 0.2);
            transition: filter 0.2s;
        }

        .sting-page-fundraising .legal-text {
            margin-top: 24px;
            text-align: center;
            font-family: var(--font-mono);
            font-size: 10px;
            opacity: 0.5;
            text-transform: uppercase;
            line-height: 1.6;
        }

        /* Impact Section */
        .sting-page-fundraising .impact-section {
            padding: 96px 0;
            background: var(--surface-container-lowest);
            border-top: 1px solid var(--outline-variant);
        }

        .sting-page-fundraising .impact-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .sting-page-fundraising .impact-header h2 {
            font-size: 48px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .sting-page-fundraising .accent-line {
            width: 96px;
            height: 4px;
            background: var(--primary);
            margin: 0 auto;
        }

        .sting-page-fundraising .impact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 768px) {
            .sting-page-fundraising .impact-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .sting-page-fundraising .impact-card {
            border: 1px solid var(--outline-variant);
            background: var(--surface-container-low);
            padding: 32px;
            transition: border-color 0.2s;
        }

        .sting-page-fundraising .impact-card:hover {
            border-color: var(--primary);
        }

        .sting-page-fundraising .impact-num {
            color: var(--primary);
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 1rem;
            transition: transform 0.3s;
            transform-origin: left;
        }

        .sting-page-fundraising .impact-card:hover .impact-num {
            transform: scale(1.1);
        }

        .sting-page-fundraising .impact-title {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .sting-page-fundraising .impact-desc {
            color: var(--on-surface-variant);
        }

        /* Footer */
        .sting-page-fundraising footer {
            background: var(--surface-container-lowest);
            padding: 48px 0;
            border-top: 1px solid var(--outline-variant);
        }

        .sting-page-fundraising .footer-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .sting-page-fundraising .footer-content {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .sting-page-fundraising .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sting-page-fundraising .footer-logo img {
            height: 48px;
            width: auto;
            filter: grayscale(1);
        }

        .sting-page-fundraising .footer-brand {
            font-size: 20px;
            font-weight: 900;
        }

        .sting-page-fundraising .footer-tag {
            font-family: var(--font-mono);
            font-size: 10px;
            opacity: 0.5;
        }

        .sting-page-fundraising .footer-links {
            display: flex;
            gap: 2rem;
        }

        .sting-page-fundraising .footer-links a {
            text-decoration: none;
            color: inherit;
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 0.1em;
            transition: color 0.2s;
        }

        .sting-page-fundraising .footer-links a:hover {
            color: var(--primary);
        }

        .sting-page-fundraising .copyright {
            font-family: var(--font-mono);
            font-size: 10px;
            opacity: 0.5;
        }

        /* Utilities */
        .sting-page-fundraising .hidden-mobile { display: none; }
        @media (min-width: 640px) { .sting-page-fundraising .hidden-mobile { display: block; } }

        /* Tactical decorative elements */
        .sting-page-fundraising .sting-bg-text {
            position: absolute;
            bottom: 0;
            right: 0;
            padding: var(--margin-desktop);
            display: none;
            opacity: 0.1;
            pointer-events: none;
        }

        @media (min-width: 1024px) {
            .sting-page-fundraising .sting-bg-text { display: block; }
        }

        .sting-page-fundraising .sting-bg-text span {
            font-family: var(--font-mono);
            font-size: 120px;
            font-weight: 900;
            line-height: 1;
            color: var(--primary);
            text-transform: uppercase;
        }
    