/* Components/ExchangeCarousel.razor.css */
.exchange-carousel-container {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: 1rem;
        position: relative;
        z-index: 0;
        padding: 1.5rem 1rem 1rem;
        overflow: visible;
    }

    .exchange-carousel-wrapper {
        width: 100%;
        max-width: 1200px;
        height: 280px;
        position: relative;
        cursor: grab;
        user-select: none;
        overflow: visible;
        margin: 0 auto;
    }

    .exchange-carousel-wrapper:active {
        cursor: grabbing;
    }



    .exchange-item {
        position: absolute;
        top: 50%;
        left: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        width: 160px;
        height: 200px;
        will-change: transform, opacity;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .exchange-item.selected {
        animation: selected-pulse 2s ease-in-out infinite;
    }

    @keyframes selected-pulse {
        0%, 100% { filter: drop-shadow(0 20px 40px hsl(var(--primary) / 0.2)); }
        50% { filter: drop-shadow(0 25px 50px hsl(var(--primary) / 0.3)); }
    }

    .exchange-item:not(.selected):hover .exchange-icon {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 40px hsl(var(--primary) / 0.15);
    }

    .exchange-item:not(.selected):hover .exchange-details {
        opacity: 0.8;
        transform: translateY(-2px);
    }

    .exchange-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, 
            hsl(var(--background)) 0%, 
            hsl(var(--muted)) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        box-shadow: 0 8px 25px hsl(var(--foreground) / 0.1);
        border: 2px solid hsl(var(--border));
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .exchange-item.selected .exchange-icon {
        width: 90px;
        height: 90px;
        box-shadow: 
            0 20px 40px hsl(var(--primary) / 0.25),
            0 0 0 3px hsl(var(--primary) / 0.3),
            inset 0 2px 0 hsl(var(--background));
        border: 3px solid hsl(var(--primary));
        background: linear-gradient(135deg, 
            hsl(var(--background)) 0%, 
            hsl(var(--primary) / 0.1) 100%);
    }

    .exchange-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
    }

    .exchange-placeholder {
        color: hsl(var(--primary-foreground));
        font-weight: bold;
        font-size: 1.5rem;
        text-transform: uppercase;
        text-shadow: 0 2px 4px hsl(var(--foreground) / 0.2);
        pointer-events: none;
    }

    .exchange-item.selected .exchange-placeholder {
        font-size: 2rem;
    }

    .exchange-details {
        text-align: center;
        margin-top: 0.75rem;
        opacity: 0.6;
        transition: all 0.4s ease-out;
        min-width: 160px;
    }

    .exchange-item.selected .exchange-details {
        opacity: 1;
        margin-top: 1.2rem;
        transform: translateY(0);
    }

    .exchange-name {
        font-size: 0.8rem;
        font-weight: 500;
        margin: 0 0 0.4rem 0;
        color: hsl(var(--muted-foreground));
        transition: all 0.4s ease-out;
        line-height: 1.2;
    }

    .exchange-item.selected .exchange-name {
        font-size: 1rem;
        font-weight: 600;
        color: hsl(var(--foreground));
    }

    .cashback-rate {
        background: linear-gradient(135deg, 
            hsl(var(--primary) / 0.15) 0%, 
            hsl(var(--accent) / 0.15) 100%);
        color: hsl(var(--primary));
        padding: 0.4rem 0.8rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.75rem;
        display: inline-block;
        min-width: 60px;
        border: 1px solid hsl(var(--primary) / 0.3);
        box-shadow: 0 4px 12px hsl(var(--primary) / 0.2);
        animation: slideInUp 0.3s ease-out;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* Components/ExchangeSetupModal.razor.css */
.scrollbar-thin::-webkit-scrollbar {
        width: 6px;
    }
    
    .scrollbar-thin::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .scrollbar-thin::-webkit-scrollbar-thumb {
        background: #d1d5db;
        border-radius: 3px;
    }
    
    .scrollbar-thin::-webkit-scrollbar-thumb:hover {
        background: #9ca3af;
    }

    .animate-in {
        animation-fill-mode: both;
    }
    
    .fade-in {
        animation: fadeIn 0.5s ease-out;
    }
    
    .slide-in-from-right {
        animation: slideInFromRight 0.7s ease-out;
    }
    
    .slide-in-from-left {
        animation: slideInFromLeft 0.5s ease-out;
    }
    
    .slide-in-from-bottom {
        animation: slideInFromBottom 0.6s ease-out;
    }
    
    .zoom-in {
        animation: zoomIn 0.5s ease-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes slideInFromRight {
        from { 
            transform: translateX(100%); 
            opacity: 0;
        }
        to { 
            transform: translateX(0); 
            opacity: 1;
        }
    }
    
    @keyframes slideInFromLeft {
        from { 
            transform: translateX(-20px); 
            opacity: 0;
        }
        to { 
            transform: translateX(0); 
            opacity: 1;
        }
    }
    
    @keyframes slideInFromBottom {
        from { 
            transform: translateY(20px); 
            opacity: 0;
        }
        to { 
            transform: translateY(0); 
            opacity: 1;
        }
    }
    
    @keyframes zoomIn {
        from { 
            transform: scale(0.9); 
            opacity: 0;
        }
        to { 
            transform: scale(1); 
            opacity: 1;
        }
    }

    @keyframes glowPulse {
        0%, 100% { opacity: 0.4; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.05); }
    }

    .glow-pulse {
        animation: glowPulse 2.5s ease-in-out infinite;
    }

    @keyframes subtleBounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
    }

    .subtle-bounce {
        animation: subtleBounce 2s ease-in-out infinite;
    }

    @keyframes softGlow {
        0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.12); }
        50% { box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.04); }
    }

    .soft-glow {
        animation: softGlow 2.2s ease-in-out infinite;
    }

/* Components/HeroSection.razor.css */
.hero-section {
        width: 100%;
        padding: 2rem 0 1rem 0;
        position: relative;
        overflow: hidden;
        background: hsl(160 6% 2%);
    }

    .hero-section::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(to top, hsl(180 5% 3%), transparent);
        pointer-events: none;
        z-index: 1;
    }

    .hero-media__halo {
        position: absolute;
        inset: -60%;
        border-radius: 9999px;
        background: radial-gradient(circle, hsl(var(--primary) / 0.18), transparent 55%);
        filter: blur(40px);
        z-index: 0;
        animation: halo-breathe 8s ease-in-out infinite;
    }

    @keyframes halo-breathe {
        0%, 100% { opacity: 0.7; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.06); }
    }

    @media (max-width: 1023px) {
        .hero-section .grid {
            text-align: center;
            gap: 1.5rem;
        }

        .hero-section {
            padding: 1.5rem 0 2.5rem 0;
        }

        .hero-media {
            max-width: 480px;
        }
    }

    @media (max-width: 767px) {
        .hero-section {
            padding: 1rem 0 2rem 0;
        }

        .hero-section .grid {
            gap: 1rem;
        }

        .hero-media {
            max-width: min(360px, 90vw);
            padding: 1.2rem;
        }
    }

    @media (min-width: 768px) {
        .hero-section {
            padding: 2rem 0 3rem 0;
        }
    }

    @media (min-width: 1024px) {
        .hero-section {
            padding: 2.5rem 0 3.5rem 0;
        }
    }

    @media (min-width: 1280px) {
        .hero-section {
            padding: 3rem 0 4rem 0;
        }
    }

    .hero-media {
        position: relative;
        width: min(580px, 85vw);
        aspect-ratio: 1;
        display: grid;
        place-items: center;
        overflow: visible;
        isolation: isolate;
        pointer-events: none;
    }

    .hero-media__video {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: clamp(24px, 6vw, 38px);
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                    filter 0.6s ease;
        z-index: 3;
        filter: brightness(1.05) contrast(1.05);
        pointer-events: auto;
    }

    .hero-media:hover .hero-media__video {
        transform: translateY(-8px) scale(1.02);
        filter: brightness(1.08) contrast(1.08);
    }

    .gradient-text {
        background: linear-gradient(135deg, 
                                  hsl(var(--foreground)), 
                                  hsl(var(--primary)) 40%, 
                                  hsl(var(--accent)) 70%, 
                                  hsl(var(--primary)));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 200%;
        animation: gradient-shift 12s ease-in-out infinite;
    }

    @keyframes gradient-shift {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .hero-media__halo,
        .gradient-text {
            animation: none;
        }

        .hero-media__video,
        .hero-media:hover .hero-media__video {
            transform: none;
            transition: none;
        }
    }

/* Components/HeroSectionBackup.razor.css */
.hero-section {
        width: 100%;
        padding: 2rem 0 1rem 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(180deg,
                    hsl(var(--background)) 0%,
                    hsl(var(--background)) 100%);
        isolate: isolate;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 20%, hsl(var(--primary) / 0.08) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 70%, hsl(var(--accent) / 0.06) 0%, transparent 45%),
                    radial-gradient(ellipse at 50% 90%, hsl(var(--primary) / 0.04) 0%, transparent 40%);
        opacity: 1;
        filter: blur(60px);
        pointer-events: none;
        animation: subtle-shift 20s ease-in-out infinite alternate;
    }

    @keyframes subtle-shift {
        0% {
            opacity: 0.8;
            transform: translate(0, 0) scale(1);
        }
        100% {
            opacity: 1;
            transform: translate(-2%, 2%) scale(1.05);
        }
    }

    @media (max-width: 1023px) {
        .hero-section .grid {
            text-align: center;
            gap: 1.5rem;
        }

        .hero-section {
            padding: 1.5rem 0 2.5rem 0;
        }

        .hero-media {
            max-width: 480px;
        }
    }

    @media (max-width: 767px) {
        .hero-section {
            padding: 1rem 0 2rem 0;
        }

        .hero-section .grid {
            gap: 1rem;
        }

        .hero-media {
            max-width: min(360px, 90vw);
            padding: 1.2rem;
        }
    }

    @media (min-width: 768px) {
        .hero-section {
            padding: 2rem 0 3rem 0;
        }
    }

    @media (min-width: 1024px) {
        .hero-section {
            padding: 2.5rem 0 3.5rem 0;
        }
    }

    @media (min-width: 1280px) {
        .hero-section {
            padding: 3rem 0 4rem 0;
        }
    }

    .hero-media {
        position: relative;
        width: min(580px, 85vw);
        aspect-ratio: 1;
        display: grid;
        place-items: center;
        overflow: visible;
        isolation: isolate;
    }

    .hero-media__halo {
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at center, hsl(var(--primary) / 0.45), transparent 60%);
        opacity: 0.35;
        filter: blur(40px);
        animation: pulse-halo 9s ease-in-out infinite;
        z-index: 0;
        pointer-events: none;
    }

    .hero-media__pulse {
        position: absolute;
        inset: -55% 5% 5% 5%;
        background: radial-gradient(ellipse at 50% 30%, hsl(var(--primary) / 0.18), transparent 60%),
                    radial-gradient(ellipse at 70% 70%, hsl(var(--accent) / 0.14), transparent 55%);
        filter: blur(70px);
        opacity: 0.3;
        animation: gentle-pulse 12s ease-in-out infinite alternate;
        z-index: 0;
        pointer-events: none;
    }

    .hero-media__orb {
        position: absolute;
        width: clamp(190px, 34vw, 260px);
        height: clamp(190px, 34vw, 260px);
        border-radius: 9999px;
        filter: blur(40px);
        opacity: 0.55;
        mix-blend-mode: screen;
        z-index: 1;
        pointer-events: none;
    }

    .hero-media__orb--one {
        top: -14%;
        left: 4%;
        background: radial-gradient(circle at center, hsl(var(--primary) / 0.45), transparent 65%);
        animation: orb-drift-one 22s ease-in-out infinite;
    }

    .hero-media__orb--two {
        bottom: -12%;
        right: 10%;
        background: radial-gradient(circle at center, hsl(var(--accent) / 0.46), transparent 70%);
        animation: orb-drift-two 26s ease-in-out infinite;
    }

    .hero-media__orb--three {
        top: 38%;
        left: -18%;
        background: radial-gradient(circle at center, hsl(var(--primary) / 0.4), transparent 68%);
        animation: orb-drift-three 28s ease-in-out infinite;
    }

    .hero-game {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: clamp(24px, 6vw, 38px);
        overflow: hidden;
        border: 1px solid rgba(56, 189, 248, 0.2);
        box-shadow: 0 0 40px rgba(56, 189, 248, 0.1), 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 60px rgba(6, 6, 15, 0.8);
        z-index: 3;
        background: #06060f;
        transition: opacity 0.6s ease, border-color 0.4s ease;
    }

    .hero-game--demo {
        cursor: default;
    }

    .hero-game--demo canvas {
        opacity: 0.45;
        filter: blur(0.5px);
        transition: opacity 0.5s ease, filter 0.5s ease;
    }

    .hero-game--active {
        cursor: crosshair;
        border-color: rgba(56, 189, 248, 0.4);
    }

    .hero-game--active canvas {
        opacity: 1;
        filter: none;
        transition: opacity 0.5s ease, filter 0.5s ease;
    }

    .hero-game canvas {
        width: 100%;
        height: 100%;
        display: block;
    }

    .hero-game__overlay {
        position: absolute;
        inset: 0;
        z-index: 7;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(ellipse at center, rgba(6, 6, 15, 0.55) 0%, rgba(6, 6, 15, 0.35) 60%, transparent 100%);
        border-radius: inherit;
    }

    .hero-game__overlay-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-game__demo-badge {
        font-family: 'Courier New', 'Fira Code', monospace;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(56, 189, 248, 0.8);
        border: 1px solid rgba(56, 189, 248, 0.3);
        border-radius: 9999px;
        padding: 0.25rem 0.75rem;
        background: rgba(6, 6, 15, 0.7);
        backdrop-filter: blur(4px);
        animation: demo-badge-pulse 3s ease-in-out infinite;
    }

    @keyframes demo-badge-pulse {
        0%, 100% { color: rgba(56, 189, 248, 0.8); border-color: rgba(56, 189, 248, 0.3); }
        50% { color: rgba(56, 189, 248, 1); border-color: rgba(56, 189, 248, 0.6); }
    }

    .hero-game__demo-hint {
        font-family: 'Courier New', 'Fira Code', monospace;
        font-size: 0.72rem;
        color: rgba(148, 163, 184, 0.7);
        text-shadow: 0 0 4px rgba(56, 189, 248, 0.2);
        text-align: center;
        max-width: 280px;
    }

    .hero-game__hud {
        position: absolute;
        top: 0.75rem;
        left: 0.75rem;
        z-index: 5;
        border-radius: 9999px;
        padding: 0.4rem 0.85rem;
        border: 1px solid rgba(56, 189, 248, 0.35);
        background: rgba(6, 6, 15, 0.85);
        backdrop-filter: blur(8px);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        font-weight: 800;
        font-family: 'Courier New', 'Fira Code', monospace;
        color: #e2e8f0;
        text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
    }

    .hero-game__score-label {
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: rgba(148, 163, 184, 0.8);
    }

    .hero-game__score-value {
        color: #4ade80;
        min-width: 3.5rem;
        text-align: right;
        text-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
    }

    .hero-game__play {
        border-radius: 9999px;
        border: 1px solid rgba(56, 189, 248, 0.6);
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(99, 102, 241, 0.9));
        color: #fff;
        padding: 0.85rem 1.5rem;
        font-weight: 800;
        font-size: 0.95rem;
        font-family: 'Courier New', 'Fira Code', monospace;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 0 30px rgba(56, 189, 248, 0.4), 0 12px 35px rgba(0, 0, 0, 0.5);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        animation: play-btn-pulse 2s ease-in-out infinite;
        cursor: pointer;
    }

    .hero-game__play:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 0 45px rgba(56, 189, 248, 0.6), 0 16px 40px rgba(0, 0, 0, 0.6);
    }

    @keyframes play-btn-pulse {
        0%, 100% { box-shadow: 0 0 30px rgba(56, 189, 248, 0.4), 0 12px 35px rgba(0, 0, 0, 0.5); }
        50% { box-shadow: 0 0 45px rgba(56, 189, 248, 0.6), 0 12px 35px rgba(0, 0, 0, 0.5); }
    }

    .hero-game__hint {
        position: absolute;
        right: 0.75rem;
        bottom: 0.75rem;
        z-index: 5;
        border-radius: 9999px;
        border: 1px solid rgba(56, 189, 248, 0.2);
        background: rgba(6, 6, 15, 0.8);
        color: rgba(148, 163, 184, 0.7);
        font-size: 0.68rem;
        font-family: 'Courier New', 'Fira Code', monospace;
        padding: 0.35rem 0.7rem;
        backdrop-filter: blur(6px);
        text-shadow: 0 0 4px rgba(56, 189, 248, 0.3);
    }

    .gradient-text {
        background: linear-gradient(135deg,
                                  hsl(var(--foreground)),
                                  hsl(var(--primary)) 40%,
                                  hsl(var(--accent)) 70%,
                                  hsl(var(--primary)));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 200%;
        animation: gradient-shift 12s ease-in-out infinite;
    }

    @keyframes gradient-shift {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }

    @keyframes pulse-halo {
        0%, 100% {
            opacity: 0.35;
            transform: scale(0.96);
        }
        50% {
            opacity: 0.55;
            transform: scale(1.04);
        }
    }

    @keyframes gentle-pulse {
        0% {
            opacity: 0.25;
            transform: scale(0.98);
        }
        100% {
            opacity: 0.35;
            transform: scale(1.02);
        }
    }

    @keyframes orb-drift-one {
        0%, 100% {
            transform: translate3d(0, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(12px, -16px, 0) scale(1.05);
        }
    }

    @keyframes orb-drift-two {
        0%, 100% {
            transform: translate3d(0, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(-18px, 14px, 0) scale(1.08);
        }
    }

    @keyframes orb-drift-three {
        0%, 100% {
            transform: translate3d(0, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(14px, -18px, 0) scale(0.96);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .hero-section::before,
        .hero-media__pulse,
        .hero-media__halo,
        .hero-media__orb,
        .gradient-text {
            animation: none;
        }

        .hero-game__play {
            animation: none;
            transition: none;
        }

        .hero-game__demo-badge {
            animation: none;
        }
    }

/* Components/HowItWorks.razor.css */
.hiw {
        display: flex;
        justify-content: center;
        margin-top: 2.5rem;
        padding: 0 1rem;
        perspective: 800px;
    }

    .hiw__frame {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0.75rem 2.5rem;
        border-radius: 60px;
        border: 1px solid rgba(148, 163, 184, 0.18);
        background: rgba(255, 255, 255, 0.02);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.45);
        overflow: hidden;
        transform-style: preserve-3d;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    }

    .hiw__frame:hover {
        transform: rotateX(4deg) rotateY(-6deg) scale(1.02);
        box-shadow:
            0 28px 60px rgba(15, 23, 42, 0.45),
            0 0 30px hsl(var(--primary) / 0.08),
            -4px 8px 20px hsl(var(--primary) / 0.06);
    }

    .hiw__glow-top {
        position: absolute;
        top: -1px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg,
            transparent,
            hsl(var(--primary) / 0.4) 20%,
            hsl(var(--primary) / 0.7) 50%,
            hsl(var(--primary) / 0.4) 80%,
            transparent
        );
        filter: blur(0.5px);
        pointer-events: none;
    }

    .hiw__glow-bot {
        position: absolute;
        bottom: -1px;
        left: 20%;
        right: 20%;
        height: 1px;
        background: linear-gradient(90deg,
            transparent,
            hsl(var(--primary) / 0.15) 30%,
            hsl(var(--primary) / 0.25) 50%,
            hsl(var(--primary) / 0.15) 70%,
            transparent
        );
        pointer-events: none;
    }

    .hiw__shimmer {
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(
            105deg,
            transparent 0%,
            hsl(var(--primary) / 0.02) 30%,
            hsl(var(--primary) / 0.07) 50%,
            hsl(var(--primary) / 0.02) 70%,
            transparent 100%
        );
        animation: shimmer-slide 5s ease-in-out infinite;
        pointer-events: none;
    }

    .hiw__orb {
        position: absolute;
        right: -10%;
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: radial-gradient(circle, hsl(var(--primary) / 0.08), transparent 70%);
        filter: blur(20px);
        pointer-events: none;
        animation: orb-drift 6s ease-in-out infinite;
    }

    @keyframes orb-drift {
        0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.5; }
        50% { transform: translateY(-50%) translateX(-15px); opacity: 0.8; }
    }

    @keyframes shimmer-slide {
        0% { left: -60%; }
        100% { left: 160%; }
    }

    .hiw__appear {
        opacity: 0;
        transform: translateY(8px) scale(0.95);
        animation: step-enter 0.5s ease forwards;
        animation-delay: calc(0.6s + var(--i, 0) * 0.15s);
    }

    @keyframes step-enter {
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .hiw__step {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        position: relative;
        z-index: 1;
    }

    .hiw__pip {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.2rem;
        height: 2.2rem;
        flex-shrink: 0;
    }

    .hiw__ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1.5px solid hsl(var(--primary) / 0.25);
        background: linear-gradient(135deg, hsl(var(--primary) / 0.06), transparent);
        transition: all 0.4s ease;
    }

    .hiw__ring--glow {
        border-color: hsl(var(--primary) / 0.5);
        background: radial-gradient(circle, hsl(var(--primary) / 0.12), transparent 70%);
        box-shadow:
            0 0 14px hsl(var(--primary) / 0.25),
            0 0 28px hsl(var(--primary) / 0.1),
            inset 0 0 8px hsl(var(--primary) / 0.1);
        animation: ring-pulse 2.8s ease-in-out infinite;
    }

    @keyframes ring-pulse {
        0%, 100% { box-shadow: 0 0 12px hsl(var(--primary) / 0.2), 0 0 24px hsl(var(--primary) / 0.08), inset 0 0 6px hsl(var(--primary) / 0.08); }
        50% { box-shadow: 0 0 20px hsl(var(--primary) / 0.35), 0 0 40px hsl(var(--primary) / 0.15), inset 0 0 10px hsl(var(--primary) / 0.12); }
    }

    .hiw__num {
        position: relative;
        font-size: 0.78rem;
        font-weight: 700;
        color: hsl(var(--primary) / 0.85);
        z-index: 1;
    }

    .hiw__pip--end .hiw__num {
        color: hsl(var(--primary));
        font-size: 0.9rem;
        text-shadow: 0 0 10px hsl(var(--primary) / 0.3);
    }

    .hiw__label {
        font-size: 0.92rem;
        font-weight: 600;
        color: hsl(var(--foreground) / 0.9);
        white-space: nowrap;
        letter-spacing: -0.01em;
        position: relative;
        z-index: 1;
    }

    .hiw__label--hl {
        color: hsl(var(--primary));
        font-weight: 700;
        text-shadow: 0 0 20px hsl(var(--primary) / 0.2);
    }

    .hiw__bridge {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0 1rem;
        position: relative;
        z-index: 1;
    }

    .hiw__line {
        position: relative;
        width: 28px;
        height: 1.5px;
        background: linear-gradient(90deg, hsl(var(--primary) / 0.12), hsl(var(--primary) / 0.3));
        border-radius: 1px;
        overflow: hidden;
    }

    .hiw__particle {
        position: absolute;
        top: -1px;
        left: -6px;
        width: 6px;
        height: 3px;
        border-radius: 3px;
        background: hsl(var(--primary));
        box-shadow: 0 0 6px 2px hsl(var(--primary) / 0.5);
        animation: particle-flow 2s ease-in-out infinite;
    }

    .hiw__bridge--2 .hiw__particle { animation-delay: 0.5s; }

    @keyframes particle-flow {
        0% { left: -6px; opacity: 0; }
        15% { opacity: 1; }
        85% { opacity: 1; }
        100% { left: calc(100% + 6px); opacity: 0; }
    }

    .hiw__chevron {
        width: 8px;
        height: 12px;
        color: hsl(var(--primary) / 0.35);
        margin-left: -1px;
        animation: chevron-nudge 2.5s ease-in-out infinite;
    }

    .hiw__bridge--2 .hiw__chevron { animation-delay: 0.35s; }

    @keyframes chevron-nudge {
        0%, 100% { transform: translateX(0); opacity: 0.4; }
        50% { transform: translateX(2px); opacity: 0.9; }
    }

    @media (max-width: 640px) {
        .hiw__frame {
            padding: 0.9rem 1.4rem;
            border-radius: 24px;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
        }

        .hiw__bridge { padding: 0 0.6rem; }
        .hiw__label { font-size: 0.8rem; }
        .hiw__pip { width: 1.8rem; height: 1.8rem; }
        .hiw__line { width: 18px; }
        .hiw__orb { display: none; }
    }

    @media (max-width: 480px) {
        .hiw__frame {
            flex-direction: column;
            border-radius: 18px;
            padding: 1.1rem 1.4rem;
            gap: 0.25rem;
            align-items: flex-start;
        }

        .hiw__bridge {
            flex-direction: column;
            align-items: center;
            padding: 0;
            margin-left: 0.55rem;
            gap: 0;
        }

        .hiw__bridge .hiw__line {
            width: 1.5px;
            height: 18px;
        }

        .hiw__bridge .hiw__chevron {
            transform: rotate(90deg);
            margin-left: 0;
            margin-top: -2px;
        }

        .hiw__bridge .hiw__particle {
            top: -6px;
            left: -0.5px;
            width: 3px;
            height: 6px;
            animation-name: particle-flow-v;
        }
    }

    @keyframes particle-flow-v {
        0% { top: -6px; opacity: 0; }
        15% { opacity: 1; }
        85% { opacity: 1; }
        100% { top: calc(100% + 6px); opacity: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
        .hiw__shimmer, .hiw__orb { display: none; }
        .hiw__chevron { animation: none; opacity: 0.6; transform: none; }
        .hiw__particle { animation: none; display: none; }
        .hiw__ring--glow { animation: none; }
        .hiw__appear { animation: none; opacity: 1; transform: none; }
        .hiw__frame:hover { transform: none; }
    }

/* Components/MobileNavigation.razor.css */
#mobile-menu {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    
    
    @media (max-width: 768px) {
        .max-w-7xl {
            max-width: 100%;
        }
        
        nav {
            position: sticky;
            top: 0;
            z-index: 50;
        }
    }

/* Components/PageFaq.razor.css */
.page-faq {
        position: relative;
        padding: clamp(3rem, 7vw, 5rem) 0;
        overflow: hidden;
        isolation: isolate;
        background: hsl(190 5% 3%);
    }




    .page-faq__container {
        position: relative;
        z-index: 1;
    }

    .page-faq__header {
        display: grid;
        gap: 0.8rem;
        max-width: 52rem;
        margin: 0 auto 2rem;
        text-align: center;
    }

    .page-faq__kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        margin: 0 auto;
        padding: 0.45rem 0.9rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--primary) / 0.2);
        background: hsl(var(--primary) / 0.1);
        color: hsl(var(--primary));
        font-size: 0.74rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .page-faq__title {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(2rem, 4vw, 3.3rem);
        font-weight: 900;
        line-height: 1.02;
        letter-spacing: -0.04em;
        color: hsl(var(--foreground));
    }

    .page-faq__subtitle {
        margin: 0;
        font-size: clamp(1.05rem, 2.5vw, 1.35rem);
        line-height: 1.45;
        color: hsl(var(--foreground) / 0.9);
        font-weight: 700;
    }

    .page-faq__description {
        margin: 0;
        color: hsl(var(--muted-foreground));
        font-size: 1rem;
        line-height: 1.8;
    }

    .page-faq__shell {
        position: relative;
        max-width: 72rem;
        margin: 0 auto;
        padding: clamp(1rem, 2vw, 1.5rem);
        border-radius: 2rem;
        border: 1px solid hsl(var(--border) / 0.6);
        background: hsl(var(--card) / 0.88);
        box-shadow: 0 24px 50px hsl(var(--muted) / 0.25);
        overflow: hidden;
    }

    .page-faq__glow {
        position: absolute;
        border-radius: 999px;
        filter: blur(70px);
        opacity: 0.15;
        pointer-events: none;
    }

    .page-faq__glow--one {
        width: 14rem;
        height: 14rem;
        top: -3rem;
        left: -2rem;
        background: hsl(var(--primary));
    }

    .page-faq__glow--two {
        width: 16rem;
        height: 16rem;
        right: -3rem;
        bottom: -5rem;
        background: hsl(var(--accent));
    }

    .page-faq__list {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .page-faq__item {
        position: relative;
        border-radius: 1.4rem;
        border: 1px solid hsl(var(--border) / 0.7);
        background:
            linear-gradient(145deg, hsl(var(--background) / 0.55), hsl(var(--card) / 0.96));
        backdrop-filter: blur(18px);
        box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.04);
        transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }

    .page-faq__item:hover {
        transform: translateY(-3px);
        border-color: hsl(var(--primary) / 0.32);
        box-shadow: 0 20px 45px hsl(var(--background) / 0.22);
    }

    .page-faq__item--open {
        border-color: hsl(var(--primary) / 0.38);
        box-shadow: 0 24px 50px hsl(var(--background) / 0.25), 0 0 0 1px hsl(var(--primary) / 0.08);
    }

    .page-faq__item--wide {
        grid-column: 1 / -1;
    }

    .page-faq__question {
        width: 100%;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 0.9rem;
        align-items: center;
        padding: 1.15rem 1.2rem;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        cursor: pointer;
    }

    .page-faq__index {
        width: 2.4rem;
        height: 2.4rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.9rem;
        border: 1px solid hsl(var(--primary) / 0.18);
        background: hsl(var(--primary) / 0.1);
        color: hsl(var(--primary));
        font-family: var(--font-heading);
        font-size: 0.82rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.04);
    }

    .page-faq__question-copy {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.55;
        color: hsl(var(--foreground));
    }

    .page-faq__icon {
        width: 2.2rem;
        height: 2.2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--background) / 0.5);
        color: hsl(var(--muted-foreground));
        transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
    }

    .page-faq__icon svg {
        width: 1rem;
        height: 1rem;
    }

    .page-faq__item--open .page-faq__icon {
        transform: rotate(45deg);
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        color: hsl(var(--primary-foreground));
        border-color: transparent;
    }

    .page-faq__answer-wrap {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
    }

    .page-faq__item--open .page-faq__answer-wrap {
        grid-template-rows: 1fr;
    }

    .page-faq__answer {
        min-height: 0;
        overflow: hidden;
        padding: 0 1.2rem;
        color: hsl(var(--muted-foreground));
        line-height: 1.8;
        white-space: pre-line;
    }

    .page-faq__item--open .page-faq__answer {
        padding-bottom: 1.2rem;
    }

    @media (max-width: 768px) {
        .page-faq__list {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 640px) {
        .page-faq__shell {
            padding: 0.85rem;
            border-radius: 1.4rem;
        }

        .page-faq__item {
            border-radius: 1.1rem;
        }

        .page-faq__question {
            grid-template-columns: 1fr auto;
            padding: 1rem;
        }

        .page-faq__index {
            display: none;
        }

        .page-faq__answer {
            padding-inline: 1rem;
        }

        .page-faq__item--open .page-faq__answer {
            padding-bottom: 1rem;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .page-faq__item,
        .page-faq__icon,
        .page-faq__answer-wrap {
            transition: none;
        }

        .page-faq__item:hover {
            transform: none;
        }
    }

/* Components/WhyTetherBack.razor.css */
.why-section {
        width: 100%;
        padding-block: clamp(3rem, 8vw, 5rem);
        position: relative;
        background: hsl(180 5% 3%);
        color: hsl(var(--foreground));
    }

    .why-headline {
        font-family: var(--font-heading, inherit);
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        font-weight: 700;
        letter-spacing: -0.02em;
        color: hsl(var(--foreground));
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    @media (min-width: 768px) {
        .why-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
    }

    @media (min-width: 1024px) {
        .why-grid {
            gap: 2.5rem;
        }
    }

    .why-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 2rem 1.75rem;
        border-radius: 1.25rem;
        background: rgba(255, 255, 255, 0.02);
        transition: background 0.35s ease, transform 0.35s ease;
    }

    .why-card:hover {
        background: rgba(255, 255, 255, 0.04);
        transform: translateY(-4px);
    }

    .why-card__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 0.875rem;
        color: hsl(var(--primary));
        margin-bottom: 0.25rem;
    }

    .why-card__icon--accent {
        color: hsl(var(--primary));
    }

    .why-card__icon--secondary {
        color: hsl(var(--primary));
    }

    .why-card__title {
        font-family: var(--font-heading, inherit);
        font-size: 1.375rem;
        font-weight: 600;
        color: hsl(var(--foreground));
        letter-spacing: -0.01em;
    }

    .why-card__text {
        font-size: 0.9375rem;
        line-height: 1.7;
        color: hsl(var(--muted-foreground));
        max-width: 380px;
    }

    @media (max-width: 767px) {
        .why-section {
            padding: 2.5rem 0;
        }

        .why-card {
            padding: 1.5rem 1.25rem;
        }
    }

/* Components/Admin/TradingHistoryModal.razor.css */
.font-monospace {
        font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    }

/* Components/Pages/NotFound.razor.css */
.tb-404-shell {
        position: relative;
        min-height: calc(100vh - 10rem);
        display: grid;
        place-items: center;
        overflow: hidden;
        padding: 4rem 1.5rem 5rem;
        background:
            radial-gradient(circle at 20% 20%, hsl(var(--primary) / 0.18), transparent 28%),
            radial-gradient(circle at 80% 18%, hsl(var(--accent) / 0.16), transparent 26%),
            radial-gradient(circle at 50% 100%, hsl(var(--secondary) / 0.12), transparent 36%),
            linear-gradient(180deg, hsl(var(--background)), hsl(var(--muted) / 0.35));
    }

    .tb-404-orbit {
        position: absolute;
        border-radius: 999px;
        border: 1px solid hsl(var(--border) / 0.55);
        box-shadow: 0 0 0 1px hsl(var(--background) / 0.2) inset;
        pointer-events: none;
    }

    .tb-404-orbit-a {
        width: 34rem;
        height: 34rem;
        opacity: 0.35;
        animation: tb-404-spin 28s linear infinite;
    }

    .tb-404-orbit-b {
        width: 46rem;
        height: 46rem;
        opacity: 0.18;
        animation: tb-404-spin-reverse 40s linear infinite;
    }

    .tb-404-card {
        position: relative;
        z-index: 1;
        width: min(100%, 52rem);
        padding: 2.5rem;
        border-radius: 2rem;
        border: 1px solid hsl(var(--border) / 0.8);
        background: linear-gradient(180deg, hsl(var(--card) / 0.95), hsl(var(--card) / 0.82));
        box-shadow:
            0 24px 80px hsl(var(--foreground) / 0.08),
            0 0 0 1px hsl(var(--background) / 0.4) inset;
        text-align: center;
        backdrop-filter: blur(14px);
    }

    .tb-404-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 5rem;
        padding: 0.45rem 1rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--primary) / 0.28);
        background: hsl(var(--primary) / 0.1);
        color: hsl(var(--primary));
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: 0.24em;
        text-indent: 0.24em;
        text-transform: uppercase;
    }

    .tb-404-logo-wrap {
        margin: 1.75rem 0 1rem;
        display: flex;
        justify-content: center;
    }

    .tb-404-title {
        margin: 0;
        font-size: clamp(2.4rem, 6vw, 4.8rem);
        line-height: 0.95;
        letter-spacing: -0.05em;
        color: hsl(var(--foreground));
        text-wrap: balance;
    }

    .tb-404-copy {
        width: min(100%, 36rem);
        margin: 1rem auto 0;
        color: hsl(var(--muted-foreground));
        font-size: 1.05rem;
        line-height: 1.7;
        text-wrap: balance;
    }

    .tb-404-actions {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.85rem;
    }

    .tb-404-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 11rem;
        padding: 0.95rem 1.35rem;
        border-radius: 999px;
        border: 1px solid transparent;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    }

    .tb-404-button:hover {
        transform: translateY(-1px);
    }

    .tb-404-button-primary {
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        color: hsl(var(--primary-foreground));
        box-shadow: 0 16px 32px hsl(var(--primary) / 0.24);
    }

    .tb-404-button-secondary {
        border-color: hsl(var(--border));
        background: hsl(var(--background) / 0.72);
        color: hsl(var(--foreground));
    }

    @keyframes tb-404-spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    @keyframes tb-404-spin-reverse {
        from { transform: rotate(360deg); }
        to { transform: rotate(0deg); }
    }

    @media (max-width: 640px) {
        .tb-404-shell {
            padding-inline: 1rem;
            min-height: calc(100vh - 7rem);
        }

        .tb-404-card {
            padding: 1.5rem 1.25rem;
            border-radius: 1.5rem;
        }

        .tb-404-orbit-a {
            width: 24rem;
            height: 24rem;
        }

        .tb-404-orbit-b {
            width: 32rem;
            height: 32rem;
        }

        .tb-404-button {
            width: 100%;
        }
    }

/* Components/UI/DashboardSplash.razor.css */
.dashboard-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--background));
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-splash.active {
    opacity: 1;
    transform: scale(1);
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.logo-burst {
    position: relative;
    z-index: 10;
}

.dash-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 12px hsl(var(--primary)/0.3));
}

.logo-burst-left,
.logo-burst-right {
    animation: logo-appear 0.6s ease-out forwards;
    transform-origin: center;
    opacity: 0;
}

.logo-burst-right {
    animation-delay: 0.1s;
}

@keyframes logo-appear {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.typewriter-container {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    min-height: 2rem;
}

.typewriter-text {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cursor {
    color: hsl(var(--primary));
    font-weight: 400;
    animation: none;
}

.cursor.blink {
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 200px;
}

.loading-bar {
    width: 100%;
    height: 2px;
    background: hsl(var(--muted));
    border-radius: 1px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.loading-text {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

@media (max-width: 768px) {
    .dash-logo {
        width: 100px;
    }
    
    .typewriter-container {
        font-size: 1.25rem;
    }
    
    .loading-indicator {
        width: 160px;
    }
}

/* Components/UI/ImageBrowser.razor.css */
.image-browser-container .selected-image,
    .image-browser-container .no-image {
        border: 1px solid #dee2e6;
        border-radius: 0.375rem;
        padding: 1rem;
        background-color: #f8f9fa;
    }

    .modal.show {
        display: block !important;
    }

    .image-browser-container .card.border-primary {
        border-color: #0d6efd !important;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

/* Components/UI/ImagePreview.razor.css */
.image-preview-container .current-image,
    .image-preview-container .preview-image {
        border: 1px solid #dee2e6;
        border-radius: 0.375rem;
        padding: 1rem;
        background-color: #f8f9fa;
    }

    .image-preview-container .preview-image {
        border-color: #0d6efd;
        background-color: #e7f3ff;
    }

/* Components/UI/LiveMarketTicker.razor.css */
.market-ticker {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.25rem;
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 9999px;
        background: linear-gradient(120deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.86));
        border: 1px solid rgba(148, 163, 184, 0.18);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.45);
        color: rgba(226, 232, 240, 0.88);
        overflow: hidden;
    }

    .market-ticker--loading,
    .market-ticker--empty {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    .market-ticker--loading span,
    .market-ticker--empty span {
        flex: 1;
        font-size: 0.9rem;
    }

    .market-ticker__mask {
        position: relative;
        flex: 1 1 0;
        overflow: hidden;
        mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        min-width: 0;
    }

    .market-ticker__track {
        display: inline-flex;
        align-items: center;
        gap: 2.5rem;
        white-space: nowrap;
        animation-name: ticker-scroll;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    .market-ticker__item {
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        font-size: 0.9rem;
        padding-inline: 0.2rem;
    }

    .market-ticker__symbol {
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(148, 163, 184, 0.95);
    }

    .market-ticker__price {
        font-variant-numeric: tabular-nums;
        color: rgba(226, 232, 240, 0.95);
    }

    .market-ticker__change {
        font-variant-numeric: tabular-nums;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .market-ticker__change.positive {
        color: #34d399;
    }

    .market-ticker__change.negative {
        color: #f87171;
    }



    @keyframes ticker-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    @media (max-width: 768px) {
        .market-ticker {
            flex-direction: row;
            align-items: center;
            gap: 0.75rem;
            border-radius: 26px;
            padding: 0.75rem 1rem;
        }

        .market-ticker__mask {
            flex: 1 1 0;
        }

        .market-ticker__track {
            gap: 2rem;
        }

        .market-ticker__item {
            gap: 0.5rem;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .market-ticker__symbol {
            font-size: 0.75rem;
        }

        .market-ticker__price {
            font-size: 0.8rem;
        }

        .market-ticker__change {
            font-size: 0.7rem;
        }


    }

    @media (max-width: 480px) {
        .market-ticker {
            padding: 0.6rem 0.8rem;
            gap: 0.5rem;
        }

        .market-ticker__track {
            gap: 1.5rem;
        }

        .market-ticker__item {
            gap: 0.4rem;
            font-size: 0.75rem;
        }

        .market-ticker__symbol {
            font-size: 0.7rem;
        }

        .market-ticker__price {
            font-size: 0.75rem;
        }

        .market-ticker__change {
            font-size: 0.65rem;
        }


    }

    @media (prefers-reduced-motion: reduce) {
        .market-ticker__track {
            animation: none;
        }
    }

/* Components/UI/Logo.razor.css */
.tetherback-logo {
        position: relative;
        display: inline-block;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Logo base styles */
    .logo-image {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        filter: drop-shadow(0 4px 12px hsl(var(--primary) / 0.1));
        max-width: none !important;
        height: auto;
    }

    /* Hover effects */
    .tetherback-logo:hover .logo-image {
        transform: scale(1.05);
        filter: drop-shadow(0 8px 24px hsl(var(--primary) / 0.2))
                brightness(1.1);
    }

    /* Glow effect */
    .logo-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, hsl(var(--primary) / 0.3) 0%, transparent 70%);
        border-radius: 50%;
        animation: glow-pulse 3s ease-in-out infinite;
        pointer-events: none;
        z-index: -1;
    }

    @keyframes glow-pulse {
        0%, 100% {
            opacity: 0.3;
            transform: translate(-50%, -50%) scale(1);
        }
        50% {
            opacity: 0.6;
            transform: translate(-50%, -50%) scale(1.1);
        }
    }

    /* Pulse effect */
    .logo-pulse {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        border: 2px solid hsl(var(--primary) / 0.4);
        border-radius: 50%;
        animation: pulse-ring 2s infinite;
        pointer-events: none;
    }

    @keyframes pulse-ring {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
        }
    }

    /* Theme variants */
    .logo-light .logo-image {
        filter: drop-shadow(0 4px 12px hsl(var(--primary) / 0.15))
                brightness(1.1);
    }

    .logo-dark .logo-image {
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3))
                contrast(1.1);
    }

    /* Floating animation */
    .logo-floating {
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    /* Spinning animation */
    .logo-spinning .logo-image {
        animation: spin 10s linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    /* Hero variant - extra special effects */
    .logo-hero {
        filter: drop-shadow(0 0 30px hsl(var(--primary) / 0.5));
        animation: hero-glow 4s ease-in-out infinite alternate;
    }

    @keyframes hero-glow {
        0% {
            filter: drop-shadow(0 0 30px hsl(var(--primary) / 0.5))
                    drop-shadow(0 0 60px hsl(var(--accent) / 0.3));
        }
        100% {
            filter: drop-shadow(0 0 40px hsl(var(--primary) / 0.7))
                    drop-shadow(0 0 80px hsl(var(--accent) / 0.5));
        }
    }

/* Components/UI/RichTextEditor.razor.css */
.rte { border: 1px solid hsl(var(--border)); border-radius: 8px; overflow: hidden; background: hsl(var(--background)); }
    .rte__toolbar {
        display: flex; flex-wrap: wrap; align-items: center; gap: 2px;
        padding: 6px 8px; background: hsl(var(--muted) / .5);
        border-bottom: 1px solid hsl(var(--border));
    }
    .rte__btn {
        display: inline-flex; align-items: center; justify-content: center;
        width: 32px; height: 32px; padding: 0; border: none; border-radius: 6px;
        background: transparent; color: hsl(var(--foreground));
        cursor: pointer; transition: background .15s, color .15s;
    }
    .rte__btn:hover { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
    .rte__btn svg { width: 16px; height: 16px; }
    .rte__btn--text { font-size: .75rem; font-weight: 700; width: auto; padding: 0 8px; }
    .rte__sep { width: 1px; height: 20px; background: hsl(var(--border)); margin: 0 4px; flex-shrink: 0; }
    .rte__editor {
        min-height: 350px; max-height: 600px; overflow-y: auto;
        padding: 16px 20px; outline: none;
        font-size: .95rem; line-height: 1.7; color: hsl(var(--foreground));
    }
    .rte__editor:empty::before {
        content: attr(data-placeholder);
        color: hsl(var(--muted-foreground)); pointer-events: none;
    }
    .rte__editor h2 { font-size: 1.5rem; font-weight: 700; margin: 1.25rem 0 .5rem; }
    .rte__editor h3 { font-size: 1.25rem; font-weight: 700; margin: 1rem 0 .4rem; }
    .rte__editor p { margin: 0 0 .75rem; }
    .rte__editor ul { padding-left: 1.5rem; margin: 0 0 .75rem; list-style-type: disc; }
    .rte__editor ol { padding-left: 1.5rem; margin: 0 0 .75rem; list-style-type: decimal; }
    .rte__editor blockquote {
        border-left: 3px solid hsl(var(--primary) / .4);
        padding: .5rem 1rem; margin: .75rem 0;
        background: hsl(var(--muted) / .2); border-radius: 0 6px 6px 0;
    }
    .rte__editor a { color: hsl(var(--primary)); text-decoration: underline; }
    .rte__editor table {
        width: 100%; border-collapse: collapse;
        margin: .75rem 0; font-size: .9rem;
        border: 1px solid hsl(var(--border));
    }
    .rte__editor th,
    .rte__editor td {
        border: 1px solid hsl(var(--border));
        padding: .4rem .6rem; text-align: left;
    }
    .rte__editor th {
        background: hsl(var(--muted) / .5);
        font-weight: 600;
    }
    .rte__editor img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 1rem auto;
        border-radius: 10px;
    }

/* Components/UI/WithdrawalTicker.razor.css */
.withdrawal-ticker {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 9999px;
        background: linear-gradient(120deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.86));
        border: 1px solid rgba(148, 163, 184, 0.18);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.45);
        color: rgba(226, 232, 240, 0.88);
        overflow: hidden;
    }

    .withdrawal-ticker__mask {
        position: relative;
        flex: 1 1 0;
        overflow: hidden;
        mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        min-width: 0;
    }

    .withdrawal-ticker__track {
        display: inline-flex;
        align-items: center;
        gap: 3rem;
        white-space: nowrap;
        animation-name: ticker-scroll;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    .withdrawal-ticker__item {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.9rem;
        padding-inline: 0.2rem;
    }

    .withdrawal-ticker__email {
        font-weight: 500;
        color: rgba(148, 163, 184, 0.95);
        letter-spacing: 0.02em;
    }

    .withdrawal-ticker__amount {
        font-variant-numeric: tabular-nums;
        font-weight: 600;
        color: #34d399;
        letter-spacing: 0.05em;
    }

    @keyframes ticker-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    @media (max-width: 768px) {
        .withdrawal-ticker {
            border-radius: 26px;
            padding: 0.75rem 1rem;
        }

        .withdrawal-ticker__track {
            gap: 2.5rem;
        }

        .withdrawal-ticker__item {
            gap: 0.6rem;
            font-size: 0.8rem;
        }

        .withdrawal-ticker__email {
            font-size: 0.75rem;
        }

        .withdrawal-ticker__amount {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 480px) {
        .withdrawal-ticker {
            padding: 0.6rem 0.8rem;
        }

        .withdrawal-ticker__track {
            gap: 2rem;
        }

        .withdrawal-ticker__item {
            gap: 0.5rem;
            font-size: 0.75rem;
        }

        .withdrawal-ticker__email {
            font-size: 0.7rem;
        }

        .withdrawal-ticker__amount {
            font-size: 0.75rem;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .withdrawal-ticker__track {
            animation: none;
        }
    }

/* Pages/AboutUs.razor.css */
.about-page {
        position: relative;
        overflow: hidden;
        background:
            radial-gradient(circle at top, hsl(var(--primary) / 0.07), transparent 30%),
            linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--background)) 100%);
        color: hsl(var(--foreground));
    }

    .about-hero {
        position: relative;
        overflow: hidden;
        padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
        isolation: isolate;
    }

    .about-hero__aurora,
    .about-hero__grid {
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .about-hero__aurora {
        filter: blur(90px);
        opacity: 0.92;
    }

    .about-hero__aurora--one {
        background: radial-gradient(circle at 18% 22%, hsl(var(--primary) / 0.24), transparent 42%);
        animation: about-float 16s ease-in-out infinite alternate;
    }

    .about-hero__aurora--two {
        background:
            radial-gradient(circle at 82% 18%, hsl(var(--accent) / 0.22), transparent 35%),
            radial-gradient(circle at 74% 72%, hsl(var(--secondary) / 0.18), transparent 32%);
        animation: about-float-reverse 18s ease-in-out infinite alternate;
    }

    .about-hero__grid {
        background-image:
            linear-gradient(hsl(var(--border) / 0.2) 1px, transparent 1px),
            linear-gradient(90deg, hsl(var(--border) / 0.2) 1px, transparent 1px);
        background-size: 72px 72px;
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 86%);
        opacity: 0.3;
    }

    .about-hero__inner,
    .about-story,
    .about-capabilities,
    .about-columns,
    .about-commitment {
        position: relative;
        z-index: 1;
        display: grid;
        gap: clamp(1.25rem, 3vw, 2rem);
    }

    .about-hero__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr);
        align-items: center;
    }

    .about-hero__copy {
        display: grid;
        gap: 1rem;
        animation: about-rise 0.8s cubic-bezier(.16, 1, .3, 1) both;
    }

    .about-eyebrow,
    .about-section__kicker,
    .about-panel__badge {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        padding: 0.4rem 0.85rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--primary) / 0.25);
        background: hsl(var(--primary) / 0.12);
        color: hsl(var(--primary));
        font-size: 0.74rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .about-hero h1,
    .about-card h2,
    .about-section__heading h2 {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(2.8rem, 7vw, 5.25rem);
        font-weight: 900;
        line-height: 0.98;
        letter-spacing: -0.045em;
    }

    .about-card h2,
    .about-section__heading h2 {
        font-size: clamp(2rem, 4vw, 3.15rem);
        line-height: 1.02;
    }

    .about-hero__lead,
    .about-hero__support,
    .about-card p,
    .about-section__heading p,
    .about-capabilities__intro p,
    .about-model__step p,
    .about-model__note p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.8;
        color: hsl(var(--muted-foreground));
    }

    .about-hero__lead {
        max-width: 48rem;
        color: hsl(var(--foreground) / 0.86);
        font-size: 1.08rem;
    }

    .about-hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        margin-top: 0.35rem;
    }

    .about-button {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 12rem;
        padding: 0.95rem 1.4rem;
        border-radius: 999px;
        border: 1px solid transparent;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
        overflow: hidden;
    }

    .about-button::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
        transform: translateX(-130%);
    }

    .about-button:hover {
        transform: translateY(-2px);
    }

    .about-button:hover::after {
        animation: about-shimmer 0.9s ease;
    }

    .about-button--primary {
        color: hsl(var(--primary-foreground));
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        box-shadow: 0 20px 45px hsl(var(--primary) / 0.28);
    }

    .about-button--ghost {
        color: hsl(var(--foreground));
        border-color: hsl(var(--border));
        background: hsl(var(--card) / 0.82);
        backdrop-filter: blur(20px);
    }

    .about-button--full {
        width: 100%;
    }

    .about-hero__panel {
        animation: about-rise 0.9s cubic-bezier(.16, 1, .3, 1) 0.12s both;
    }

    .about-panel,
    .about-card,
    .about-model__step,
    .about-model__note,
    .about-capability {
        position: relative;
        border-radius: 1.6rem;
        border: 1px solid hsl(var(--border) / 0.85);
        background:
            linear-gradient(180deg, hsl(var(--card) / 0.96), hsl(var(--card) / 0.8)),
            radial-gradient(circle at top right, hsl(var(--primary) / 0.12), transparent 35%);
        box-shadow: 0 30px 70px hsl(var(--background) / 0.38);
        overflow: hidden;
    }

    .about-panel::before,
    .about-card::before,
    .about-model__step::before,
    .about-model__note::before,
    .about-capability::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(145deg, hsl(var(--primary) / 0.06), transparent 40%, hsl(var(--accent) / 0.08));
        opacity: 0.9;
        pointer-events: none;
    }

    .about-panel__badge,
    .about-panel__metrics,
    .about-panel__flow,
    .about-card > *,
    .about-capability > *,
    .about-model__step > *,
    .about-model__note > * {
        position: relative;
        z-index: 1;
    }

    .about-panel {
        padding: 1.35rem;
        display: grid;
        gap: 1rem;
    }

    .about-panel__metrics {
        display: grid;
        gap: 0.8rem;
    }

    .about-panel__metric {
        display: grid;
        gap: 0.3rem;
        padding: 1rem;
        border-radius: 1.2rem;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--background) / 0.24);
        backdrop-filter: blur(16px);
    }

    .about-panel__metric strong {
        font-family: var(--font-heading);
        font-size: 1.35rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        color: hsl(var(--foreground));
    }

    .about-panel__metric span {
        color: hsl(var(--muted-foreground));
        line-height: 1.55;
        font-size: 0.92rem;
    }

    .about-panel__flow {
        position: relative;
        height: 14rem;
        overflow: hidden;
        border-radius: 1.35rem;
        border: 1px solid hsl(var(--border));
        background:
            radial-gradient(circle at center, hsl(var(--primary) / 0.13), transparent 42%),
            linear-gradient(180deg, hsl(var(--background) / 0.35), hsl(var(--background) / 0.15));
    }

    .about-panel__flow-ring {
        position: absolute;
        inset: 50% auto auto 50%;
        width: 7rem;
        height: 7rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--primary) / 0.24);
        transform: translate(-50%, -50%);
        animation: about-orbit 6s linear infinite;
    }

    .about-panel__flow-ring--outer {
        width: 10.5rem;
        height: 10.5rem;
        border-color: hsl(var(--accent) / 0.2);
        animation-duration: 9s;
        animation-direction: reverse;
    }

    .about-panel__flow-core,
    .about-panel__flow-node {
        position: absolute;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        box-shadow: 0 16px 36px hsl(var(--background) / 0.25);
        backdrop-filter: blur(14px);
    }

    .about-panel__flow-core {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        min-width: 7rem;
        padding: 0.95rem 1rem;
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        color: hsl(var(--primary-foreground));
        font-weight: 800;
        letter-spacing: 0.02em;
    }

    .about-panel__flow-node {
        padding: 0.5rem 0.8rem;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card) / 0.9);
        color: hsl(var(--foreground) / 0.92);
        font-size: 0.78rem;
        font-weight: 700;
    }

    .about-panel__flow-node--1 {
        left: 10%;
        top: 16%;
        animation: about-node-a 5.4s ease-in-out infinite;
    }

    .about-panel__flow-node--2 {
        right: 10%;
        top: 16%;
        animation: about-node-b 6.2s ease-in-out infinite;
    }

    .about-panel__flow-node--3 {
        left: 12%;
        bottom: 14%;
        animation: about-node-b 5.9s ease-in-out infinite;
    }

    .about-panel__flow-node--4 {
        right: 8%;
        bottom: 18%;
        animation: about-node-a 6.6s ease-in-out infinite;
    }

    .about-section {
        padding: 0 0 clamp(1.5rem, 4vw, 2.75rem);
    }

    .about-section--story,
    .about-section--model,
    .about-section--commitment {
        padding-bottom: clamp(2rem, 5vw, 3.25rem);
    }

    .about-story,
    .about-columns,
    .about-commitment {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-card {
        display: grid;
        gap: 1rem;
        padding: clamp(1.35rem, 3vw, 2rem);
    }

    .about-card__accent {
        color: hsl(var(--foreground)) !important;
        font-weight: 700;
    }

    .about-mission__pills,
    .about-audience,
    .about-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .about-mission__pill,
    .about-audience__pill,
    .about-badges__item {
        display: inline-flex;
        align-items: center;
        padding: 0.7rem 0.95rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--border));
        background: linear-gradient(135deg, hsl(var(--muted)), hsl(var(--card)));
        color: hsl(var(--foreground) / 0.95);
        font-weight: 600;
        box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

    .about-capabilities {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        align-items: start;
    }

    .about-capabilities__intro,
    .about-section__heading {
        display: grid;
        gap: 0.95rem;
        max-width: 46rem;
        margin-bottom: 1.35rem;
    }

    .about-capabilities__grid,
    .about-model {
        display: grid;
        gap: 1rem;
    }

    .about-capabilities__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-capability {
        padding: 1.15rem;
        display: grid;
        gap: 0.7rem;
        transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    }

    .about-capability:hover,
    .about-model__step:hover,
    .about-card:hover {
        transform: translateY(-4px);
        border-color: hsl(var(--primary) / 0.28);
        box-shadow: 0 34px 78px hsl(var(--background) / 0.44);
    }

    .about-capability__index,
    .about-model__number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 0.95rem;
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        color: hsl(var(--primary-foreground));
        font-family: var(--font-heading);
        font-size: 0.92rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        box-shadow: 0 16px 30px hsl(var(--primary) / 0.28);
    }

    .about-capability p {
        color: hsl(var(--foreground) / 0.92);
        line-height: 1.65;
    }

    .about-model {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-bottom: 1rem;
    }

    .about-model__step {
        padding: 1.35rem;
        display: grid;
        gap: 0.9rem;
        transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    }

    .about-model__step h3 {
        margin: 0;
        font-size: 1.12rem;
        font-weight: 800;
        color: hsl(var(--foreground));
    }

    .about-model__note {
        display: grid;
        gap: 0.75rem;
        padding: 1.35rem;
    }

    .about-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 0.8rem;
    }

    .about-list li {
        position: relative;
        padding-left: 1.45rem;
        line-height: 1.65;
        color: hsl(var(--foreground) / 0.95);
    }

    .about-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.65rem;
        width: 0.55rem;
        height: 0.55rem;
        border-radius: 999px;
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        box-shadow: 0 0 0 0.28rem hsl(var(--primary) / 0.08);
    }

    .about-contact__details {
        display: grid;
        gap: 0.35rem;
        padding: 1rem;
        border-radius: 1.1rem;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--background) / 0.22);
    }

    .about-contact__details span {
        color: hsl(var(--muted-foreground));
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .about-contact__details a {
        color: hsl(var(--foreground));
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        word-break: break-word;
    }

    @media (max-width: 1100px) {
        .about-hero__inner,
        .about-story,
        .about-capabilities,
        .about-columns,
        .about-commitment {
            grid-template-columns: 1fr;
        }

        .about-capabilities__grid,
        .about-model {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 720px) {
        .about-hero {
            padding-top: 3.8rem;
        }

        .about-hero h1 {
            font-size: clamp(2.45rem, 14vw, 4rem);
        }

        .about-card h2,
        .about-section__heading h2 {
            font-size: clamp(1.85rem, 10vw, 2.5rem);
        }

        .about-button {
            width: 100%;
        }

        .about-capabilities__grid,
        .about-model {
            grid-template-columns: 1fr;
        }

        .about-panel,
        .about-card,
        .about-model__step,
        .about-model__note,
        .about-capability {
            border-radius: 1.25rem;
        }

        .about-panel__flow-node {
            font-size: 0.7rem;
            padding: 0.45rem 0.7rem;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .about-hero__aurora--one,
        .about-hero__aurora--two,
        .about-panel__flow-ring,
        .about-panel__flow-node {
            animation: none !important;
        }

        .about-button:hover,
        .about-capability:hover,
        .about-model__step:hover,
        .about-card:hover {
            transform: none;
        }
    }

    @keyframes about-rise {
        from {
            opacity: 0;
            transform: translateY(24px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes about-float {
        from {
            transform: translate3d(0, 0, 0) scale(1);
        }
        to {
            transform: translate3d(3%, -4%, 0) scale(1.08);
        }
    }

    @keyframes about-float-reverse {
        from {
            transform: translate3d(0, 0, 0) scale(1);
        }
        to {
            transform: translate3d(-4%, 3%, 0) scale(1.05);
        }
    }

    @keyframes about-shimmer {
        from {
            transform: translateX(-130%);
        }
        to {
            transform: translateX(130%);
        }
    }

    @keyframes about-orbit {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    @keyframes about-node-a {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-6px);
        }
    }

    @keyframes about-node-b {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(6px);
        }
    }

/* Pages/Blogs.razor.css */
.bl { min-height: 100vh; background: hsl(var(--background)); }

    .bl-load {
        display: flex; align-items: center; justify-content: center;
        min-height: 80vh;
    }
    .bl-load__spinner {
        width: 32px; height: 32px; border-radius: 50%;
        border: 2.5px solid hsl(var(--border));
        border-top-color: hsl(var(--primary));
        animation: bl-spin .7s linear infinite;
    }

    .bl-dot {
        width: 3px; height: 3px; border-radius: 50%; flex-shrink: 0;
        background: hsl(var(--muted-foreground) / .35);
    }
    .bl-dot--sm { width: 2.5px; height: 2.5px; }

    /* ── header ── */
    .bl-header {
        padding: 5rem 2rem 3rem;
        border-bottom: 1px solid hsl(var(--border));
        animation: bl-rise .6s cubic-bezier(.4,0,.2,1) both;
    }
    .bl-header__inner {
        max-width: 1200px; margin: 0 auto;
    }
    .bl-header__tag {
        display: inline-block; font-size: .58rem; font-weight: 700;
        text-transform: uppercase; letter-spacing: .16em;
        color: hsl(var(--primary)); margin-bottom: .75rem;
    }
    .bl-header__title {
        font-size: 2.8rem; font-weight: 800;
        line-height: 1.1; color: hsl(var(--foreground));
        margin: 0 0 .65rem;
    }
    .bl-header__sub {
        font-size: .95rem; color: hsl(var(--muted-foreground));
        line-height: 1.65; margin: 0; max-width: 440px;
    }
    @media (max-width: 640px) {
        .bl-header { padding: 3.5rem 1.25rem 2rem; }
        .bl-header__title { font-size: 1.8rem; }
        .bl-header__sub { font-size: .85rem; }
    }

    /* ── wrap ── */
    .bl-wrap {
        max-width: 1200px; margin: 0 auto;
        padding: 2.5rem 2rem 6rem;
    }
    @media (max-width: 640px) { .bl-wrap { padding: 1.5rem 1.25rem 4rem; } }

    /* ── featured card ── */
    .bl-feat {
        display: grid; grid-template-columns: 1.1fr 1fr;
        background: hsl(var(--card)); border: 1px solid hsl(var(--border));
        border-radius: 16px; overflow: hidden; cursor: pointer;
        margin-bottom: 3rem;
        transition: transform .45s cubic-bezier(.4,0,.2,1),
                    box-shadow .45s cubic-bezier(.4,0,.2,1),
                    border-color .35s ease;
        animation: bl-rise .55s cubic-bezier(.4,0,.2,1) .08s both;
    }
    .bl-feat:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 64px -14px hsl(var(--primary) / .1),
                    0 12px 28px -8px rgba(0,0,0,.05);
        border-color: hsl(var(--primary) / .18);
    }
    .bl-feat__img {
        position: relative; overflow: hidden; min-height: 320px;
    }
    .bl-feat__img img {
        width: 100%; height: 100%; object-fit: cover;
        transition: transform .7s cubic-bezier(.4,0,.2,1);
    }
    .bl-feat:hover .bl-feat__img img { transform: scale(1.04); }
    .bl-feat__noimg {
        width: 100%; height: 100%; min-height: 320px;
        background: linear-gradient(135deg, hsl(var(--muted) / .15), hsl(var(--muted) / .05));
    }
    .bl-feat__body {
        display: flex; flex-direction: column; justify-content: center;
        padding: 2.5rem;
    }
    .bl-feat__badge {
        display: inline-block; width: fit-content;
        font-size: .55rem; font-weight: 700; text-transform: uppercase;
        letter-spacing: .12em; padding: .25rem .65rem;
        border-radius: 4px; margin-bottom: 1.25rem;
        background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
    }
    .bl-feat__title {
        font-size: 1.55rem; font-weight: 800; line-height: 1.25;
        color: hsl(var(--foreground)); margin: 0 0 .7rem;
        transition: color .3s ease;
    }
    .bl-feat:hover .bl-feat__title { color: hsl(var(--primary)); }
    .bl-feat__summary {
        font-size: .88rem; color: hsl(var(--muted-foreground));
        line-height: 1.7; margin: 0 0 1.25rem;
        display: -webkit-box; -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; overflow: hidden;
    }
    .bl-feat__meta {
        display: flex; align-items: center; gap: .45rem;
        font-size: .74rem; color: hsl(var(--muted-foreground));
        margin-bottom: 1.25rem;
    }
    .bl-feat__author { font-weight: 600; color: hsl(var(--foreground)); }
    .bl-feat__cta {
        display: inline-flex; align-items: center; gap: .35rem;
        font-size: .78rem; font-weight: 600; color: hsl(var(--primary));
        opacity: 0; transform: translateX(-8px);
        transition: opacity .3s ease, transform .3s ease;
    }
    .bl-feat:hover .bl-feat__cta { opacity: 1; transform: translateX(0); }
    .bl-feat__cta svg {
        width: 14px; height: 14px;
        transition: transform .3s ease;
    }
    .bl-feat:hover .bl-feat__cta svg { transform: translateX(3px); }
    @media (max-width: 768px) {
        .bl-feat { grid-template-columns: 1fr; }
        .bl-feat__img { min-height: 200px; }
        .bl-feat__body { padding: 1.5rem; }
        .bl-feat__title { font-size: 1.25rem; }
        .bl-feat__cta { opacity: 1; transform: none; }
    }

    /* ── divider ── */
    .bl-divider {
        display: flex; align-items: center; gap: 1rem;
        margin-bottom: 2.25rem;
        animation: bl-rise .45s cubic-bezier(.4,0,.2,1) .15s both;
    }
    .bl-divider__text {
        font-size: .65rem; font-weight: 700; text-transform: uppercase;
        letter-spacing: .14em; color: hsl(var(--muted-foreground));
        white-space: nowrap;
    }
    .bl-divider__line {
        flex: 1; height: 1px; background: hsl(var(--border));
    }

    /* ── grid ── */
    .bl-grid {
        display: grid; grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
    @media (max-width: 1024px) { .bl-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
    @media (max-width: 640px)  { .bl-grid { grid-template-columns: 1fr; } }

    /* ── card ── */
    .bl-card {
        border-radius: 12px; overflow: hidden;
        background: hsl(var(--card)); border: 1px solid hsl(var(--border));
        cursor: pointer; display: flex; flex-direction: column;
        transition: transform .4s cubic-bezier(.4,0,.2,1),
                    box-shadow .4s cubic-bezier(.4,0,.2,1),
                    border-color .3s ease;
        animation: bl-cardUp .5s cubic-bezier(.4,0,.2,1) both;
    }
    .bl-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 48px -12px hsl(var(--primary) / .1),
                    0 8px 20px -6px rgba(0,0,0,.06);
        border-color: hsl(var(--primary) / .2);
    }
    .bl-card__img {
        position: relative; aspect-ratio: 16 / 9; overflow: hidden;
        background: hsl(var(--muted) / .08);
    }
    .bl-card__img img {
        width: 100%; height: 100%; object-fit: cover;
        transition: transform .6s cubic-bezier(.4,0,.2,1);
    }
    .bl-card:hover .bl-card__img img { transform: scale(1.05); }
    .bl-card__noimg {
        width: 100%; height: 100%;
        background: linear-gradient(135deg, hsl(var(--muted) / .12), hsl(var(--muted) / .06));
    }
    .bl-card__read {
        position: absolute; top: .65rem; right: .65rem;
        background: hsl(var(--background) / .85);
        backdrop-filter: blur(10px);
        color: hsl(var(--muted-foreground));
        font-size: .6rem; font-weight: 600;
        padding: .18rem .5rem; border-radius: 5px; z-index: 1;
    }
    .bl-card__body {
        display: flex; flex-direction: column; flex: 1;
        padding: 1.2rem 1.3rem 1.3rem;
    }
    .bl-card__meta {
        display: flex; align-items: center; gap: .4rem;
        font-size: .68rem; color: hsl(var(--muted-foreground));
        margin-bottom: .6rem;
    }
    .bl-card__title {
        font-size: 1.02rem; font-weight: 700; line-height: 1.35;
        color: hsl(var(--foreground)); margin: 0 0 .4rem;
        display: -webkit-box; -webkit-line-clamp: 2;
        -webkit-box-orient: vertical; overflow: hidden;
        transition: color .3s ease;
    }
    .bl-card:hover .bl-card__title { color: hsl(var(--primary)); }
    .bl-card__excerpt {
        font-size: .82rem; color: hsl(var(--muted-foreground));
        line-height: 1.65; margin: 0 0 auto; padding-bottom: 1rem;
        display: -webkit-box; -webkit-line-clamp: 2;
        -webkit-box-orient: vertical; overflow: hidden;
    }
    .bl-card__link {
        display: inline-flex; align-items: center; gap: .35rem;
        font-size: .76rem; font-weight: 600;
        color: hsl(var(--primary));
        opacity: 0; transform: translateY(4px);
        transition: opacity .3s ease, transform .3s ease;
    }
    .bl-card:hover .bl-card__link { opacity: 1; transform: translateY(0); }
    .bl-card__link svg {
        width: 14px; height: 14px;
        transition: transform .3s ease;
    }
    .bl-card:hover .bl-card__link svg { transform: translateX(3px); }

    /* ── empty ── */
    .bl-empty {
        text-align: center; padding: 6rem 2rem;
        animation: bl-rise .5s cubic-bezier(.4,0,.2,1) both;
    }
    .bl-empty h3 {
        font-size: 1.1rem; font-weight: 700;
        color: hsl(var(--foreground)); margin: 0 0 .35rem;
    }
    .bl-empty p {
        font-size: .88rem; color: hsl(var(--muted-foreground)); margin: 0;
    }

    /* ── keyframes ── */
    @keyframes bl-spin { to { transform: rotate(360deg); } }
    @keyframes bl-rise {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bl-cardUp {
        from { opacity: 0; transform: translateY(20px) scale(.97); }
        to   { opacity: 1; transform: translateY(0) scale(1); }
    }

/* Pages/Calculator.razor.css */
.calculator-intro {
        max-width: 64rem;
        margin: 0 auto;
        padding: 1rem 1.25rem;
        border-radius: 1.25rem;
        border: 1px solid hsl(var(--border) / 0.6);
        background:
            linear-gradient(135deg, hsl(var(--card) / 0.92), hsl(var(--muted) / 0.34)),
            radial-gradient(circle at top right, hsl(var(--primary) / 0.12), transparent 35%);
        box-shadow: 0 20px 45px hsl(var(--background) / 0.16);
    }

    .calculator-intro p {
        margin: 0;
        line-height: 1.75;
        color: hsl(var(--muted-foreground));
        text-align: center;
        font-size: 0.98rem;
    }

/* Pages/Careers.razor.css */
.careers-hero {
        position: relative;
        overflow: hidden;
        padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
        background: hsl(var(--background));
    }
    .careers-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 20%, hsl(var(--primary) / 0.12) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 60%, hsl(var(--accent) / 0.08) 0%, transparent 45%),
                    radial-gradient(ellipse at 50% 90%, hsl(var(--primary) / 0.06) 0%, transparent 40%);
        filter: blur(80px);
        pointer-events: none;
    }
    .careers-hero__badge {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding: .35rem .9rem;
        margin-bottom: 1.25rem;
        font-size: .8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .08em;
        border-radius: 999px;
        background: hsl(var(--primary) / 0.12);
        color: hsl(var(--primary));
        border: 1px solid hsl(var(--primary) / 0.2);
    }
    .careers-hero__title {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 5vw, 3.25rem);
        font-weight: 800;
        line-height: 1.15;
        color: hsl(var(--foreground));
        margin: 0 0 .75rem;
    }
    .careers-hero__subtitle {
        font-family: var(--font-body);
        font-size: clamp(1rem, 2vw, 1.2rem);
        font-weight: 400;
        color: hsl(var(--muted-foreground));
        max-width: 600px;
        margin: 0 auto;
    }

    .careers-body {
        position: relative;
        padding: clamp(2rem, 6vw, 4rem) 0 clamp(4rem, 10vw, 7rem);
        background: hsl(var(--background));
    }

    .careers-intro {
        max-width: 720px;
        margin: 0 auto 3.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .careers-intro__text {
        font-family: var(--font-body);
        font-size: 1.05rem;
        line-height: 1.75;
        color: hsl(var(--muted-foreground));
    }
    .careers-intro__highlight {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 600;
        color: hsl(var(--primary));
    }

    .careers-section-title {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        color: hsl(var(--foreground));
        margin-bottom: 2rem;
    }

    .careers-perks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 900px;
        margin: 0 auto 4rem;
    }
    @media (max-width: 640px) {
        .careers-perks { grid-template-columns: 1fr; }
    }
    .careers-perk {
        padding: 1.75rem;
        border-radius: 16px;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card));
        transition: border-color .3s ease, box-shadow .3s ease;
    }
    .careers-perk:hover {
        border-color: hsl(var(--primary) / 0.35);
        box-shadow: 0 4px 24px hsl(var(--primary) / 0.08);
    }
    .careers-perk__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-bottom: .75rem;
        border-radius: 12px;
        background: hsl(var(--primary) / 0.1);
        color: hsl(var(--primary));
    }
    .careers-perk__icon svg {
        width: 22px;
        height: 22px;
    }
    .careers-perk__title {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 600;
        color: hsl(var(--foreground));
        margin-bottom: .35rem;
    }
    .careers-perk__desc {
        font-family: var(--font-body);
        font-size: .9rem;
        color: hsl(var(--muted-foreground));
        line-height: 1.65;
    }

    .careers-benefits {
        max-width: 700px;
        margin: 0 auto 4rem;
    }
    .careers-benefits__intro {
        font-family: var(--font-body);
        font-size: .95rem;
        color: hsl(var(--muted-foreground));
        text-align: center;
        margin-bottom: 1.25rem;
    }
    .careers-benefits__list {
        list-style: none;
        padding: 0;
        display: grid;
        gap: .65rem;
        margin-bottom: 1.5rem;
    }
    .careers-benefits__list li {
        position: relative;
        padding-left: 1.5rem;
        font-family: var(--font-body);
        font-size: .95rem;
        color: hsl(var(--foreground));
        line-height: 1.6;
    }
    .careers-benefits__list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: hsl(var(--primary));
    }
    .careers-benefits__outro {
        font-family: var(--font-body);
        font-size: .95rem;
        color: hsl(var(--muted-foreground));
        text-align: center;
    }

    .careers-hiring {
        max-width: 700px;
        margin: 0 auto 4rem;
    }
    .careers-hiring__intro {
        font-family: var(--font-body);
        font-size: .95rem;
        color: hsl(var(--muted-foreground));
        text-align: center;
        margin-bottom: 2rem;
    }
    .careers-steps {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .careers-step {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        border-radius: 14px;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card));
    }
    .careers-step__number {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: .95rem;
    }
    .careers-step__title {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 600;
        color: hsl(var(--foreground));
        margin-bottom: .2rem;
    }
    .careers-step__desc {
        font-family: var(--font-body);
        font-size: .88rem;
        color: hsl(var(--muted-foreground));
        line-height: 1.55;
    }

    .careers-cta {
        max-width: 640px;
        margin: 0 auto;
    }
    .careers-cta__inner {
        text-align: center;
        padding: 2.5rem;
        border-radius: 20px;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card));
    }
    .careers-cta__title {
        font-family: var(--font-heading);
        font-size: 1.35rem;
        font-weight: 700;
        color: hsl(var(--foreground));
        margin-bottom: .75rem;
    }
    .careers-cta__text {
        font-family: var(--font-body);
        font-size: .95rem;
        color: hsl(var(--muted-foreground));
        margin-bottom: .5rem;
    }
    .careers-cta__contact {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 600;
        color: hsl(var(--foreground));
        margin: 1rem 0 .75rem;
    }
    .careers-cta__email {
        display: inline-block;
        padding: .65rem 1.5rem;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        color: hsl(var(--primary-foreground));
        background: hsl(var(--primary));
        text-decoration: none;
        transition: opacity .2s ease;
    }
    .careers-cta__email:hover {
        opacity: .88;
    }

/* Pages/ConcreteBlog.razor.css */
/* ── loader ── */
    .bp-load {
        display: flex; align-items: center; justify-content: center;
        min-height: 100vh;
    }
    .bp-load__pulse {
        width: 40px; height: 40px; border-radius: 50%;
        background: hsl(var(--primary) / .15);
        animation: bp-pulse 1.4s ease-in-out infinite;
    }

    /* ── 404 ── */
    .bp-404 {
        display: flex; flex-direction: column; align-items: center;
        justify-content: center; text-align: center;
        min-height: 70vh; padding: 2rem; gap: .5rem;
        animation: bp-up .6s cubic-bezier(.4,0,.2,1) both;
    }
    .bp-404__icon {
        width: 80px; height: 80px; border-radius: 50%;
        background: hsl(var(--muted) / .3);
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 1.25rem;
    }
    .bp-404__icon svg {
        width: 34px; height: 34px; color: hsl(var(--muted-foreground) / .4);
    }
    .bp-404 h1 {
        font-size: 1.4rem; font-weight: 800;
        color: hsl(var(--foreground)); margin: 0;
    }
    .bp-404 p {
        font-size: .9rem; color: hsl(var(--muted-foreground));
        margin: 0 0 1.25rem;
    }
    .bp-404__link {
        display: inline-flex; align-items: center; gap: .4rem;
        font-size: .82rem; font-weight: 600; color: hsl(var(--primary));
        text-decoration: none; transition: gap .25s ease;
    }
    .bp-404__link:hover { gap: .65rem; }

    /* ── article wrapper ── */
    .bp { min-height: 100vh; padding-bottom: 5rem; }

    /* ── hero (banner image present) ── */
    .bp-hero {
        position: relative; width: 100%; height: 500px;
        overflow: hidden;
    }
    .bp-hero__img-wrap {
        position: absolute; inset: 0;
        animation: bp-kenburns 28s ease-in-out infinite alternate;
    }
    .bp-hero__img {
        width: 100%; height: 100%; object-fit: cover;
    }
    .bp-hero__overlay {
        position: absolute; inset: 0;
        background:
            linear-gradient(to bottom,
                hsl(var(--background) / .15) 0%,
                transparent 25%,
                hsl(var(--background) / .55) 65%,
                hsl(var(--background)) 100%);
    }
    .bp-hero__inner {
        position: absolute; inset: 0;
        display: flex; flex-direction: column;
        justify-content: space-between;
        padding: 2rem;
        max-width: 920px; margin: 0 auto;
        z-index: 2;
    }
    .bp-hero__back {
        display: inline-flex; align-items: center; gap: .4rem;
        font-size: .78rem; font-weight: 600;
        color: rgba(255,255,255,.75); text-decoration: none;
        width: fit-content;
        transition: color .2s ease, gap .25s ease;
    }
    .bp-hero__back:hover { color: #fff; gap: .6rem; }
    .bp-hero__text {
        animation: bp-up .7s cubic-bezier(.4,0,.2,1) .15s both;
    }
    .bp-hero__title {
        font-size: 2.8rem; font-weight: 800;
        line-height: 1.12; color: #fff; margin: 0 0 1.1rem;
        text-shadow: 0 2px 24px rgba(0,0,0,.25);
    }
    .bp-hero__meta {
        display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
        font-size: .82rem; color: rgba(255,255,255,.7);
    }
    .bp-hero__author {
        display: flex; align-items: center; gap: .45rem;
        font-weight: 500; color: #fff;
    }
    .bp-avatar {
        width: 28px; height: 28px; border-radius: 50%;
        background: rgba(255,255,255,.18); color: #fff;
        backdrop-filter: blur(8px);
        display: flex; align-items: center; justify-content: center;
        font-size: .7rem; font-weight: 700;
    }
    .bp-sep {
        width: 3px; height: 3px; border-radius: 50%;
        background: currentColor; opacity: .45; flex-shrink: 0;
    }
    .bp-meta__name { font-weight: 600; color: hsl(var(--foreground)); }
    @media (max-width: 768px) {
        .bp-hero { height: 380px; }
        .bp-hero__title { font-size: 1.9rem; }
        .bp-hero__inner { padding: 1.25rem; }
    }
    @media (max-width: 480px) {
        .bp-hero { height: 320px; }
        .bp-hero__title { font-size: 1.5rem; }
    }

    /* ── head (no image fallback) ── */
    .bp-head {
        padding: 4.5rem 1.5rem 2.5rem;
        animation: bp-up .6s cubic-bezier(.4,0,.2,1) both;
    }
    .bp-head__inner { max-width: 740px; margin: 0 auto; }
    .bp-head__back {
        display: inline-flex; align-items: center; gap: .4rem;
        font-size: .8rem; font-weight: 500;
        color: hsl(var(--muted-foreground)); text-decoration: none;
        margin-bottom: 2.25rem;
        transition: color .2s ease, gap .25s ease;
    }
    .bp-head__back:hover { color: hsl(var(--primary)); gap: .6rem; }
    .bp-head__rule {
        width: 40px; height: 2px; border-radius: 1px;
        background: hsl(var(--primary)); margin-bottom: 1.75rem;
    }
    .bp-head__title {
        font-size: 2.7rem; font-weight: 800;
        line-height: 1.15; color: hsl(var(--foreground));
        margin: 0 0 1.35rem;
    }
    .bp-head__meta {
        display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
        font-size: .86rem; color: hsl(var(--muted-foreground));
    }
    @media (max-width: 640px) {
        .bp-head { padding: 2.75rem 1.25rem 1.75rem; }
        .bp-head__title { font-size: 1.7rem; }
    }

    /* ── article content ── */
    .bp-content {
        padding: 0 1.5rem;
        animation: bp-up .6s cubic-bezier(.4,0,.2,1) .15s both;
    }
    .bp-content__inner {
        max-width: 740px; margin: 0 auto;
        font-size: 1.06rem; line-height: 1.9;
        color: hsl(var(--foreground));
    }

    .bp-content__inner h1,
    .bp-content__inner h2,
    .bp-content__inner h3,
    .bp-content__inner h4 {
        font-weight: 700;
        color: hsl(var(--foreground));
        margin: 2.75rem 0 .9rem;
        padding-left: .9rem;
        border-left: 2px solid hsl(var(--primary) / .25);
    }
    .bp-content__inner h2 { font-size: 1.55rem; }
    .bp-content__inner h3 { font-size: 1.25rem; }
    .bp-content__inner h4 { font-size: 1.08rem; }
    .bp-content__inner p { margin: 0 0 1.4rem; }

    .bp-content__inner a {
        color: hsl(var(--primary)); text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: hsl(var(--primary) / .3);
        transition: text-decoration-color .2s ease;
    }
    .bp-content__inner a:hover {
        text-decoration-color: hsl(var(--primary));
    }

    .bp-content__inner img {
        max-width: calc(100% + 4rem); height: auto;
        margin: 2.25rem -2rem; border-radius: 14px;
        box-shadow: 0 10px 40px rgba(0,0,0,.07);
    }
    @media (max-width: 640px) {
        .bp-content__inner img {
            max-width: calc(100% + 1rem);
            margin: 1.5rem -.5rem;
            border-radius: 10px;
        }
    }

    .bp-content__inner blockquote {
        position: relative;
        border: none; border-left: 3px solid hsl(var(--primary) / .25);
        padding: 1.5rem 1.5rem 1.5rem 2.25rem;
        margin: 2.25rem 0;
        background: hsl(var(--muted) / .15);
        border-radius: 0 12px 12px 0;
        font-style: italic;
        color: hsl(var(--muted-foreground));
    }
    .bp-content__inner blockquote::before {
        content: '\201C';
        position: absolute; top: -.15rem; left: .65rem;
        font-size: 3.2rem; line-height: 1; font-style: normal;
        color: hsl(var(--primary) / .12); font-weight: 800;
    }

    .bp-content__inner code {
        background: hsl(var(--muted) / .45);
        padding: .15rem .4rem; border-radius: 5px;
        font-size: .88em;
    }
    .bp-content__inner pre {
        background: hsl(var(--muted)); border-radius: 12px;
        padding: 1.5rem; overflow-x: auto; margin: 2.25rem 0;
        border: 1px solid hsl(var(--border));
    }
    .bp-content__inner pre code { background: none; padding: 0; }

    .bp-content__inner ul {
        padding-left: 1.5rem; margin: 0 0 1.4rem;
        list-style-type: disc;
    }
    .bp-content__inner ol {
        padding-left: 1.5rem; margin: 0 0 1.4rem;
        list-style-type: decimal;
    }
    .bp-content__inner li { margin-bottom: .45rem; }

    .bp-content__inner table {
        width: 100%; border-collapse: collapse;
        margin: 2.25rem 0; font-size: .95rem;
        border: 1px solid hsl(var(--border));
    }
    .bp-content__inner th,
    .bp-content__inner td {
        border: 1px solid hsl(var(--border));
        padding: .6rem .9rem; text-align: left;
    }
    .bp-content__inner th {
        background: hsl(var(--muted) / .5);
        font-weight: 600;
    }
    .bp-content__inner tr:nth-child(even) {
        background: hsl(var(--muted) / .15);
    }

    .bp-content__inner hr {
        border: none; height: 1px;
        background: hsl(var(--border)); margin: 3.5rem auto;
        max-width: 100px;
    }

    /* ── footer ── */
    .bp-end {
        max-width: 740px; margin: 4.5rem auto 0;
        padding: 0 1.5rem;
        animation: bp-up .5s cubic-bezier(.4,0,.2,1) .2s both;
    }
    .bp-end__rule {
        width: 40px; height: 1px;
        background: hsl(var(--border)); margin-bottom: 1.5rem;
    }
    .bp-end__link {
        display: inline-flex; align-items: center; gap: .4rem;
        font-size: .82rem; font-weight: 600; color: hsl(var(--primary));
        text-decoration: none;
        transition: gap .25s ease;
    }
    .bp-end__link:hover { gap: .7rem; }

    @keyframes bp-pulse {
        0%, 100% { transform: scale(1); opacity: .35; }
        50%      { transform: scale(2); opacity: 0; }
    }
    @keyframes bp-up {
        from { opacity: 0; transform: translateY(18px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bp-kenburns {
        0%   { transform: scale(1) translate(0, 0); }
        100% { transform: scale(1.06) translate(-0.8%, -0.6%); }
    }

/* Pages/ConcretePromotion.razor.css */
/* ═══════════════════════════════════
                       SHARED: badges, content animations
                       ═══════════════════════════════════ */
                    .promo-badge {
                        display: inline-flex;
                        align-items: center;
                        gap: .35rem;
                        font-size: .75rem;
                        font-weight: 600;
                        padding: .3rem .7rem;
                        border-radius: 9999px;
                        backdrop-filter: blur(12px);
                        animation: p-badgePop .4s cubic-bezier(.34,1.56,.64,1) both;
                    }
                    .promo-badge:nth-child(1) { animation-delay: .3s; }
                    .promo-badge:nth-child(2) { animation-delay: .4s; }
                    .promo-badge:nth-child(3) { animation-delay: .5s; }
                    .promo-badge--type {
                        background: hsl(var(--primary) / .9);
                        color: hsl(var(--primary-foreground));
                        box-shadow: 0 2px 12px hsl(var(--primary) / .3);
                    }
                    .promo-badge--exchange {
                        background: rgba(255,255,255,.15);
                        color: #fff;
                        border: 1px solid rgba(255,255,255,.2);
                    }


                    /* ═══════════════════════════════
                       BANNER MODE (BannerImageUrl set)
                       ═══════════════════════════════ */
                    .promo-banner {
                        position: relative;
                        width: 100%;
                        max-height: 380px;
                        overflow: hidden;
                        border-radius: 1rem;
                        background: hsl(var(--card));
                        margin-bottom: 1.5rem;
                    }
                    .promo-banner__stage {
                        perspective: 1200px;
                        padding: 6px;
                    }
                    .promo-banner__card {
                        position: relative;
                        transform-style: preserve-3d;
                        border-radius: .75rem;
                        overflow: hidden;
                        animation:
                            p-entrance .7s cubic-bezier(.16,1,.3,1) both,
                            p-bannerTilt 10s ease-in-out .7s infinite;
                        box-shadow:
                            0 25px 60px -15px rgba(0,0,0,.5),
                            0 10px 30px -10px hsl(var(--primary) / .2),
                            0 0 40px -5px hsl(var(--primary) / .08);
                    }
                    .promo-banner__img {
                        display: block;
                        width: 100%;
                        max-height: 368px;
                        object-fit: cover;
                        border-radius: .75rem;
                    }
                    .promo-banner__shine {
                        position: absolute;
                        top: 0; left: -120%;
                        width: 70%; height: 100%;
                        background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.03) 25%, rgba(255,255,255,.2) 50%, rgba(255,255,255,.03) 75%, transparent 100%);
                        transform: skewX(-20deg);
                        animation: p-shine 7s ease-in-out 1s infinite;
                        pointer-events: none;
                        z-index: 2;
                    }
                    .promo-banner__edge-glow {
                        position: absolute;
                        inset: 0;
                        border-radius: .75rem;
                        box-shadow: inset 0 0 40px hsl(var(--primary) / .06), inset 0 0 80px hsl(var(--primary) / .03);
                        animation: p-edgePulse 3s ease-in-out infinite;
                        pointer-events: none;
                        z-index: 3;
                    }
                    .promo-banner__gradient {
                        position: absolute;
                        bottom: 0; left: 6px; right: 6px;
                        height: 60%;
                        border-radius: 0 0 .75rem .75rem;
                        background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 30%, rgba(0,0,0,.15) 60%, transparent 100%);
                        z-index: 4;
                        pointer-events: none;
                    }
                    .promo-banner__content {
                        position: absolute;
                        bottom: 6px; left: 6px; right: 6px;
                        padding: 1.25rem 1.5rem;
                        z-index: 5;
                        border-radius: 0 0 .75rem .75rem;
                        animation: p-fadeUp .5s cubic-bezier(.16,1,.3,1) .25s both;
                    }
                    .promo-banner__title {
                        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
                        font-weight: 800;
                        line-height: 1.2;
                        color: #fff;
                        margin: 0;
                        text-shadow: 0 2px 16px rgba(0,0,0,.6);
                        animation: p-titleReveal .6s cubic-bezier(.16,1,.3,1) .4s both;
                    }
                    .promo-banner__countdown {
                        margin-top: .3rem;
                        font-size: .8rem;
                        color: rgba(255,255,255,.7);
                        animation: p-fadeUp .4s ease .55s both;
                    }

                    /* Floating particles */
                    .promo-banner__particles {
                        position: absolute;
                        inset: 0;
                        z-index: 3;
                        pointer-events: none;
                        overflow: hidden;
                    }
                    .promo-banner__particles span {
                        position: absolute;
                        width: 3px; height: 3px;
                        border-radius: 50%;
                        background: hsl(var(--primary) / .6);
                        box-shadow: 0 0 6px 2px hsl(var(--primary) / .3);
                        animation: p-particleFloat 8s ease-in-out infinite;
                    }
                    .promo-banner__particles span:nth-child(1) { left: 10%; bottom: -5%; animation-delay: 0s; animation-duration: 7s; }
                    .promo-banner__particles span:nth-child(2) { left: 25%; bottom: -5%; animation-delay: 1.2s; animation-duration: 9s; width: 2px; height: 2px; }
                    .promo-banner__particles span:nth-child(3) { left: 40%; bottom: -5%; animation-delay: 2.5s; animation-duration: 6.5s; }
                    .promo-banner__particles span:nth-child(4) { left: 55%; bottom: -5%; animation-delay: .8s; animation-duration: 8.5s; width: 4px; height: 4px; }
                    .promo-banner__particles span:nth-child(5) { left: 70%; bottom: -5%; animation-delay: 3s; animation-duration: 7.5s; width: 2px; height: 2px; }
                    .promo-banner__particles span:nth-child(6) { left: 85%; bottom: -5%; animation-delay: 1.8s; animation-duration: 9.5s; }
                    .promo-banner__particles span:nth-child(7) { left: 15%; bottom: -5%; animation-delay: 4s; animation-duration: 6s; width: 2px; height: 2px; }
                    .promo-banner__particles span:nth-child(8) { left: 60%; bottom: -5%; animation-delay: 2s; animation-duration: 8s; }

                    /* ═══════════════════════════════════
                       INLINE MODE (no banner) animations
                       ═══════════════════════════════════ */
                    .promo-inline-card {
                        animation: none !important;
                    }

                    /* 3D card stage inside content card */
                    .promo-card-stage {
                        position: relative;
                        perspective: 900px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        padding: 1.5rem 0 2rem;
                        margin-bottom: 1.5rem;
                        overflow: visible;
                    }
                    .promo-card-stage__glow {
                        position: absolute;
                        top: 50%; left: 50%;
                        width: 60%; height: 70%;
                        background: radial-gradient(circle, hsl(var(--primary) / .3) 0%, transparent 70%);
                        transform: translate(-50%, -50%);
                        animation: p-glowPulse 4s ease-in-out infinite;
                        filter: blur(40px);
                        pointer-events: none;
                        z-index: 0;
                    }
                    .promo-card-stage__glow--alt {
                        width: 40%; height: 50%;
                        background: radial-gradient(circle, hsl(var(--accent) / .18) 0%, transparent 70%);
                        animation: p-glowDrift 6s ease-in-out infinite -2s;
                        filter: blur(50px);
                    }
                    .promo-card-stage__float {
                        position: relative;
                        transform-style: preserve-3d;
                        z-index: 1;
                        animation:
                            p-cardEntrance .8s cubic-bezier(.16,1,.3,1) both,
                            p-cardFloat 6s ease-in-out .8s infinite;
                    }
                    .promo-card-stage__img {
                        display: block;
                        max-width: 100%;
                        max-height: 340px;
                        border-radius: .75rem;
                        object-fit: contain;
                        box-shadow:
                            0 25px 60px -12px rgba(0,0,0,.45),
                            0 12px 30px -8px hsl(var(--primary) / .15),
                            0 0 0 1px rgba(255,255,255,.06);
                    }
                    .promo-card-stage__shine {
                        position: absolute;
                        top: 0; left: -120%;
                        width: 65%; height: 100%;
                        background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.05) 35%, rgba(255,255,255,.18) 50%, rgba(255,255,255,.05) 65%, transparent 100%);
                        transform: skewX(-25deg);
                        animation: p-shine 6s ease-in-out 1s infinite;
                        pointer-events: none;
                        border-radius: .75rem;
                    }
                    .promo-card-stage__ring {
                        position: absolute;
                        inset: -3px;
                        border-radius: .85rem;
                        background: conic-gradient(from 0deg, hsl(var(--primary) / .35), transparent 60deg, transparent 180deg, hsl(var(--primary) / .2), transparent 300deg, hsl(var(--primary) / .35));
                        z-index: -1;
                        animation: p-ringRotate 12s linear infinite;
                        opacity: .45;
                        filter: blur(4px);
                    }
                    .promo-inline__badges {
                        animation: p-fadeUp .5s cubic-bezier(.16,1,.3,1) .3s both;
                    }
                    .promo-inline__title {
                        animation: p-titleReveal .6s cubic-bezier(.16,1,.3,1) .4s both;
                    }
                    .promo-inline__countdown {
                        animation: p-fadeUp .4s ease .55s both;
                    }

                    /* ═══════════════════════════
                       CONTENT AREA animations
                       ═══════════════════════════ */
                    .promotion-page .grid > div:first-child > div:not(.promo-inline-card) {
                        animation: p-contentUp .6s cubic-bezier(.16,1,.3,1) .5s both;
                    }
                    .promotion-page .promo-inline-card > .promo-inline > * {
                        /* ensure children aren't hidden by parent animation */
                    }
                    .promotion-page .promo-inline-card > div:not(.promo-inline) {
                        animation: p-contentUp .6s cubic-bezier(.16,1,.3,1) .6s both;
                    }
                    .promotion-page .grid > .space-y-4 > :first-child,
                    .promotion-page .grid > .space-y-6 > :first-child {
                        animation: p-sideIn .6s cubic-bezier(.16,1,.3,1) .6s both;
                    }
                    .promotion-page .grid > .space-y-4 > :nth-child(2),
                    .promotion-page .grid > .space-y-6 > :nth-child(2) {
                        animation: p-sideIn .6s cubic-bezier(.16,1,.3,1) .75s both;
                    }

                    /* ═══════════ KEYFRAMES ═══════════ */

                    /* Banner entrance + tilt */
                    @keyframes p-entrance {
                        from { opacity: 0; transform: scale(.97) rotateX(3deg) translateY(16px); }
                        to { opacity: 1; transform: scale(1) rotateX(0) translateY(0); }
                    }
                    @keyframes p-bannerTilt {
                        0%, 100% { transform: rotateY(-1deg) rotateX(.5deg); }
                        25% { transform: rotateY(.8deg) rotateX(-.2deg) translateY(-3px); }
                        50% { transform: rotateY(1deg) rotateX(.5deg); }
                        75% { transform: rotateY(-.8deg) rotateX(-.2deg) translateY(-3px); }
                    }

                    /* Shine sweep */
                    @keyframes p-shine {
                        0%, 100% { left: -120%; opacity: 0; }
                        38% { left: -120%; opacity: 0; }
                        43% { opacity: 1; }
                        56% { left: 150%; opacity: 0; }
                    }

                    /* Edge glow */
                    @keyframes p-edgePulse {
                        0%, 100% { box-shadow: inset 0 0 40px hsl(var(--primary) / .05), inset 0 0 80px hsl(var(--primary) / .02); }
                        50% { box-shadow: inset 0 0 50px hsl(var(--primary) / .12), inset 0 0 100px hsl(var(--primary) / .06); }
                    }

                    /* Shared content animations */
                    @keyframes p-fadeUp {
                        from { opacity: 0; transform: translateY(16px); }
                        to { opacity: 1; transform: translateY(0); }
                    }
                    @keyframes p-titleReveal {
                        from { opacity: 0; transform: translateY(10px); filter: blur(4px); }
                        to { opacity: 1; transform: translateY(0); filter: blur(0); }
                    }
                    @keyframes p-badgePop {
                        from { opacity: 0; transform: scale(.5) translateY(6px); }
                        to { opacity: 1; transform: scale(1) translateY(0); }
                    }
                    @keyframes p-contentUp {
                        from { opacity: 0; transform: translateY(28px); }
                        to { opacity: 1; transform: translateY(0); }
                    }
                    @keyframes p-sideIn {
                        from { opacity: 0; transform: translateX(28px); }
                        to { opacity: 1; transform: translateX(0); }
                    }
                    @keyframes p-particleFloat {
                        0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
                        10% { opacity: .8; transform: scale(1); }
                        50% { opacity: .5; transform: translateY(-200px) translateX(15px) scale(.8); }
                        100% { transform: translateY(-380px) translateX(-10px) scale(0); opacity: 0; }
                    }
                    @keyframes p-cardEntrance {
                        from { opacity: 0; transform: translateY(30px) rotateX(8deg) rotateY(-6deg) scale(.9); }
                        to { opacity: 1; transform: translateY(0) rotateX(0) rotateY(0) scale(1); }
                    }
                    @keyframes p-cardFloat {
                        0%, 100% { transform: translateY(0) rotateY(-3deg) rotateX(1.5deg); }
                        25% { transform: translateY(-10px) rotateY(1deg) rotateX(-1deg); }
                        50% { transform: translateY(-16px) rotateY(3deg) rotateX(-1.5deg); }
                        75% { transform: translateY(-6px) rotateY(-1deg) rotateX(.8deg); }
                    }
                    @keyframes p-glowPulse {
                        0%, 100% { opacity: .25; transform: translate(-50%, -50%) scale(1); }
                        50% { opacity: .6; transform: translate(-50%, -50%) scale(1.15); }
                    }
                    @keyframes p-glowDrift {
                        0%, 100% { opacity: .15; transform: translate(-50%, -50%) scale(.9) translateX(-20px); }
                        50% { opacity: .4; transform: translate(-50%, -50%) scale(1.1) translateX(20px); }
                    }
                    @keyframes p-ringRotate {
                        to { transform: rotate(360deg); }
                    }
                    @keyframes p-imgReveal {
                        from { opacity: 0; transform: scale(.96) translateY(12px); clip-path: inset(8% 8% 8% 8% round .75rem); }
                        to { opacity: 1; transform: scale(1) translateY(0); clip-path: inset(0% 0% 0% 0% round .75rem); }
                    }

/* Pages/ConcreteTournament.razor.css */
.ct-page {
        position: relative;
        min-height: 100vh;
        animation: ct-page-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .ct-header-glow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 340px;
        background: linear-gradient(180deg, hsl(var(--primary) / 0.06) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }

    .ct-header {
        position: relative;
        z-index: 2;
        padding: 2rem 0 0;
        border-bottom: 1px solid hsl(var(--border) / 0.5);
    }

    .ct-back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        font-size: 0.8125rem;
        font-weight: 500;
        color: hsl(var(--muted-foreground));
        text-decoration: none;
        margin-bottom: 1.5rem;
        transition: color 0.2s ease;
    }

    .ct-back-link:hover {
        color: hsl(var(--primary));
    }

    .ct-header__main {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .ct-header__info {
        flex: 1;
        min-width: 0;
    }

    .ct-header__title {
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        font-weight: 800;
        line-height: 1.1;
        color: hsl(var(--foreground));
        margin-bottom: 0.625rem;
    }

    .ct-header__date {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        font-size: 0.875rem;
        color: hsl(var(--muted-foreground));
    }

    .ct-header__action {
        flex-shrink: 0;
        padding-top: 0.5rem;
    }

    .ct-stat-strip {
        display: flex;
        gap: 0.5rem;
        padding-bottom: 1.5rem;
        overflow-x: auto;
    }

    .ct-stat-pill {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        background: hsl(var(--card) / 0.6);
        border: 1px solid hsl(var(--border) / 0.5);
        white-space: nowrap;
        font-size: 0.8125rem;
        transition: border-color 0.2s ease;
    }

    .ct-stat-pill:hover {
        border-color: hsl(var(--primary) / 0.3);
    }

    .ct-stat-pill__label {
        color: hsl(var(--muted-foreground));
        font-weight: 500;
    }

    .ct-stat-pill__value {
        color: hsl(var(--foreground));
        font-weight: 700;
    }

    .ct-status-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 0.75rem;
    }

    .ct-status-badge--active {
        background: hsl(var(--primary) / 0.12);
        color: hsl(var(--primary));
        border: 1px solid hsl(var(--primary) / 0.2);
    }

    .ct-status-badge--done {
        background: hsl(var(--muted));
        color: hsl(var(--muted-foreground));
        border: 1px solid hsl(var(--border));
    }

    .ct-status-badge--pending {
        background: hsl(var(--accent) / 0.12);
        color: hsl(var(--accent));
        border: 1px solid hsl(var(--accent) / 0.2);
    }

    .ct-status-badge__dot {
        position: relative;
        display: inline-flex;
        width: 7px; height: 7px;
    }

    .ct-status-badge__ping {
        position: absolute;
        inset: 0;
        border-radius: 9999px;
        background: hsl(var(--primary));
        animation: ct-ping 1.5s cubic-bezier(0, 0, .2, 1) infinite;
    }

    .ct-status-badge__dot::after {
        content: "";
        display: block;
        width: 7px; height: 7px;
        border-radius: 9999px;
        background: hsl(var(--primary));
        position: relative;
        z-index: 1;
    }

    .ct-days-left {
        margin-left: 0.5rem;
        padding: 0.125rem 0.625rem;
        border-radius: 9999px;
        background: hsl(var(--primary) / 0.1);
        color: hsl(var(--primary));
        font-size: 0.8125rem;
        font-weight: 600;
    }

    .ct-content-section {
        position: relative;
        z-index: 2;
        padding: 2.5rem 0 3.5rem;
    }

    .ct-joined-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.625rem 1.5rem;
        border-radius: 0.75rem;
        background: hsl(var(--primary) / 0.1);
        border: 1px solid hsl(var(--primary) / 0.25);
        color: hsl(var(--primary));
        font-weight: 600;
        font-size: 0.875rem;
    }

    .ct-completed-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.625rem 1.5rem;
        border-radius: 0.75rem;
        background: hsl(var(--muted));
        border: 1px solid hsl(var(--border));
        color: hsl(var(--muted-foreground));
        font-weight: 600;
        font-size: 0.875rem;
    }

    .ct-join-btn {
        padding: 0.75rem 2rem;
        border-radius: 0.75rem;
        font-weight: 700;
        font-size: 0.9375rem;
        color: hsl(var(--primary-foreground));
        background: hsl(var(--primary));
        border: none;
        transition: all 0.2s ease;
        box-shadow: 0 0 16px hsl(var(--primary) / 0.2), 0 2px 8px hsl(var(--primary) / 0.1);
    }

    .ct-join-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 28px hsl(var(--primary) / 0.3), 0 8px 20px hsl(var(--primary) / 0.15);
    }

    .ct-join-btn:disabled {
        opacity: 0.7;
        transform: none;
    }

    .ct-medal {
        width: 32px; height: 32px;
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 800;
        color: hsl(var(--background));
    }

    .ct-medal--gold { background: hsl(var(--primary)); }
    .ct-medal--silver { background: hsl(var(--muted-foreground)); }
    .ct-medal--bronze { background: hsl(var(--accent)); }

    .ct-prize-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        border-radius: 0.75rem;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card));
        transition: transform 0.2s ease;
    }

    .ct-prize-row:hover {
        transform: translateX(4px);
    }

    .ct-prize-row--highlight {
        border-color: hsl(var(--primary) / 0.2);
        background: hsl(var(--primary) / 0.03);
    }

    .ct-content-anim > * {
        animation: ct-contentUp .6s cubic-bezier(.16,1,.3,1) both;
    }

    .ct-content-anim > :nth-child(1) { animation-delay: .1s; }
    .ct-content-anim > :nth-child(2) { animation-delay: .2s; }
    .ct-content-anim > :nth-child(3) { animation-delay: .3s; }

    .ct-side-anim > * {
        animation: ct-sideIn .6s cubic-bezier(.16,1,.3,1) both;
    }

    .ct-side-anim > :nth-child(1) { animation-delay: .15s; }
    .ct-side-anim > :nth-child(2) { animation-delay: .25s; }
    .ct-side-anim > :nth-child(3) { animation-delay: .35s; }

    .ct-row {
        animation: ct-rowSlide .5s ease-out both;
    }

    @media (max-width: 640px) {
        .ct-header__main {
            flex-direction: column;
            gap: 1rem;
        }

        .ct-stat-strip {
            gap: 0.375rem;
        }

        .ct-stat-pill {
            padding: 0.375rem 0.75rem;
            font-size: 0.75rem;
        }
    }

    @keyframes ct-page-enter {
        from { opacity: 0; transform: translateY(12px) scale(0.985); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes ct-ping {
        75%, 100% { transform: scale(2.5); opacity: 0; }
    }

    @keyframes ct-contentUp {
        from { opacity: 0; transform: translateY(24px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes ct-sideIn {
        from { opacity: 0; transform: translateX(24px); }
        to { opacity: 1; transform: translateX(0); }
    }

    @keyframes ct-rowSlide {
        from { opacity: 0; transform: translateX(-16px); }
        to { opacity: 1; transform: translateX(0); }
    }

    @media (prefers-reduced-motion: reduce) {
        .ct-row,
        .ct-content-anim > *,
        .ct-side-anim > * {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
    }

/* Pages/Events.razor.css */
.events-page {
        min-height: 100vh;
    }

    /* ── loader ── */
    .events-loader {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60vh;
    }
    .events-loader__spinner {
        width: 48px; height: 48px;
        border-radius: 50%;
        border: 3px solid hsl(var(--muted));
        border-top-color: hsl(var(--primary));
        animation: ev-spin .8s linear infinite;
    }

    /* ── hero banner carousel ── */
    .events-hero {
        position: relative;
        width: 100%;
        height: 420px;
        overflow: hidden;
    }
    @media (max-width: 768px) {
        .events-hero { height: 260px; }
    }
    .events-hero__bg {
        position: absolute; inset: 0;
        background: linear-gradient(135deg, hsl(var(--primary) / .06), hsl(var(--accent) / .04), transparent);
        z-index: 0;
    }
    .events-hero__particle {
        position: absolute;
        border-radius: 50%;
        background: hsl(var(--primary) / .15);
        filter: blur(40px);
        animation: ev-float 8s ease-in-out infinite;
    }
    .events-hero__particle--1 {
        width: 120px; height: 120px;
        top: 10%; left: 5%;
        animation-delay: 0s;
    }
    .events-hero__particle--2 {
        width: 80px; height: 80px;
        top: 60%; right: 10%;
        animation-delay: -3s;
        background: hsl(var(--accent) / .12);
    }
    .events-hero__particle--3 {
        width: 100px; height: 100px;
        bottom: 10%; left: 40%;
        animation-delay: -5s;
    }
    .events-hero__carousel {
        position: relative;
        width: 100%; height: 100%;
    }
    .events-hero__slide {
        position: absolute; inset: 0;
        opacity: 0;
        transform: scale(1.04);
        transition: opacity .7s ease, transform .7s ease;
        cursor: pointer;
        z-index: 1;
    }
    .events-hero__slide--active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }
    .events-hero__img {
        width: 100%; height: 100%;
        object-fit: cover;
    }
    .events-hero__overlay {
        position: absolute; inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.3) 40%, transparent 70%);
        display: flex;
        align-items: flex-end;
        padding: 2.5rem 3rem;
    }
    @media (max-width: 768px) {
        .events-hero__overlay { padding: 1.5rem; }
    }
    .events-hero__content {
        animation: ev-heroSlideUp .6s ease .15s both;
    }
    .events-hero__slide--active .events-hero__content {
        animation: ev-heroSlideUp .6s ease .15s both;
    }
    .events-hero__exchange {
        display: inline-block;
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
        font-size: .7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        padding: .3rem .7rem;
        border-radius: 4px;
        margin-bottom: .6rem;
        animation: ev-tagPop .4s cubic-bezier(.34,1.56,.64,1) .3s both;
    }
    .events-hero__title {
        font-size: 1.8rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
        margin: 0 0 .4rem;
        text-shadow: 0 2px 12px rgba(0,0,0,.4);
    }
    @media (max-width: 768px) {
        .events-hero__title { font-size: 1.2rem; }
    }
    .events-hero__desc {
        color: rgba(255,255,255,.7);
        font-size: .9rem;
        margin: 0;
        max-width: 500px;
    }
    .events-hero__dots {
        position: absolute;
        bottom: 1.2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: .5rem;
        z-index: 10;
    }
    .events-hero__dot {
        width: 10px; height: 10px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,.35);
        cursor: pointer;
        transition: all .3s ease;
        padding: 0;
    }
    .events-hero__dot--active {
        background: hsl(var(--primary));
        box-shadow: 0 0 8px hsl(var(--primary) / .5);
        transform: scale(1.25);
    }
    .events-hero__dot--active::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1.5px solid hsl(var(--primary) / .3);
        animation: ev-dot-ring 2s ease-in-out infinite;
    }

    /* ── section ── */
    .events-section {
        padding: 3rem 0 4rem;
        animation: ev-sectionFadeIn .8s ease .2s both;
    }
    .events-section__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        animation: ev-slideInLeft .6s cubic-bezier(.25,.8,.25,1) .3s both;
    }
    .events-section__label {
        display: flex;
        align-items: center;
        gap: .6rem;
        font-size: 1.25rem;
        font-weight: 700;
        color: hsl(var(--foreground));
    }
    .events-section__icon-pulse {
        width: 10px; height: 10px;
        border-radius: 50%;
        background: hsl(var(--primary));
        display: inline-block;
        animation: ev-pulse-dot 2s ease-in-out infinite;
        box-shadow: 0 0 0 0 hsl(var(--primary) / .4);
    }
    .events-section__count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 28px; height: 28px;
        border-radius: 8px;
        background: hsl(var(--primary) / .12);
        color: hsl(var(--primary));
        font-size: .8rem;
        font-weight: 700;
        animation: ev-countPop .5s cubic-bezier(.34,1.56,.64,1) .5s both;
    }

    /* ── event grid ── */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    @media (max-width: 1024px) {
        .events-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
        .events-grid { grid-template-columns: 1fr; }
    }

    /* ── event card ── */
    .event-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        background: hsl(var(--card));
        border: 1px solid hsl(var(--border));
        cursor: pointer;
        transition: transform .35s cubic-bezier(.25,.8,.25,1),
                    box-shadow .35s cubic-bezier(.25,.8,.25,1),
                    border-color .35s ease;
        animation: ev-cardFadeUp .5s ease both;
    }
    .event-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow:
            0 24px 48px hsl(var(--primary) / .12),
            0 12px 24px rgba(0,0,0,.15);
        border-color: hsl(var(--primary) / .35);
    }

    .event-card__banner {
        position: relative;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }
    .event-card__img {
        width: 100%; height: 100%;
        object-fit: cover;
        background: hsl(var(--muted));
        transition: transform .6s cubic-bezier(.25,.8,.25,1), filter .6s ease;
    }
    .event-card:hover .event-card__img {
        transform: scale(1.04);
        filter: brightness(1.05);
    }
    .event-card__img-overlay {
        position: absolute; inset: 0;
        background: linear-gradient(to top, hsl(var(--card)) 0%, transparent 30%);
        pointer-events: none;
        opacity: .7;
        transition: opacity .4s ease;
    }
    .event-card:hover .event-card__img-overlay {
        opacity: .5;
    }
    .event-card__shimmer {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            105deg,
            transparent 30%,
            hsl(var(--primary) / .06) 50%,
            transparent 70%
        );
        transform: translateX(-100%);
        transition: none;
        pointer-events: none;
        z-index: 4;
    }
    .event-card:hover .event-card__shimmer {
        animation: ev-shimmer .8s ease;
    }

    .event-card__exchange-logo {
        position: absolute;
        top: .75rem;
        left: .75rem;
        width: 36px; height: 36px;
        border-radius: 10px;
        background: hsl(var(--background));
        border: 2px solid hsl(var(--border));
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,.15);
        transition: transform .3s ease, box-shadow .3s ease;
        z-index: 3;
    }
    .event-card:hover .event-card__exchange-logo {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0,0,0,.2);
    }
    .event-card__exchange-logo img {
        width: 100%; height: 100%;
        object-fit: contain;
        padding: 2px;
    }

    .event-card__countdown {
        position: absolute;
        top: .75rem;
        right: .75rem;
        background: rgba(239,68,68,.9);
        backdrop-filter: blur(8px);
        color: #fff;
        font-size: .7rem;
        font-weight: 700;
        padding: .3rem .6rem;
        border-radius: 6px;
        letter-spacing: .04em;
        animation: ev-countdown-blink 2s ease-in-out infinite;
        z-index: 3;
    }

    .event-card__body {
        padding: 1rem 1.25rem 1.25rem;
    }
    .event-card__body > * {
        transition: transform .35s cubic-bezier(.25,.8,.25,1), opacity .35s ease;
    }
    .event-card:hover .event-card__body > * {
        transform: translateY(-2px);
    }
    .event-card__title {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.35;
        color: hsl(var(--foreground));
        margin: 0 0 .35rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color .3s ease, transform .35s cubic-bezier(.25,.8,.25,1);
    }
    .event-card:hover .event-card__title {
        color: hsl(var(--primary));
    }
    .event-card__desc {
        font-size: .82rem;
        color: hsl(var(--muted-foreground));
        margin: 0 0 .75rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .event-card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .event-card__meta {
        display: flex;
        align-items: center;
        gap: .4rem;
        font-size: .78rem;
        color: hsl(var(--muted-foreground));
    }
    .event-card__cal-icon {
        width: 14px; height: 14px;
        flex-shrink: 0;
        stroke-width: 2;
    }
    .event-card__arrow {
        width: 28px; height: 28px;
        border-radius: 50%;
        background: hsl(var(--primary) / .08);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translate(-8px, 8px);
        transition: all .35s cubic-bezier(.25,.8,.25,1);
    }
    .event-card:hover .event-card__arrow {
        opacity: 1;
        transform: translate(0, 0);
    }
    .event-card__arrow svg {
        width: 14px; height: 14px;
        color: hsl(var(--primary));
        stroke-width: 2;
    }

    /* ── empty state ── */
    .events-empty {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 6rem 2rem;
        gap: 1.5rem;
    }
    .events-empty__icon {
        width: 80px; height: 80px;
        border-radius: 50%;
        background: hsl(var(--muted) / .5);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .events-empty__icon svg {
        width: 36px; height: 36px;
        color: hsl(var(--muted-foreground));
        stroke-width: 1.5;
    }
    .events-empty h3 {
        font-size: 1.1rem;
        font-weight: 500;
        color: hsl(var(--muted-foreground));
    }

    /* ── past campaigns ── */
    .events-section--past {
        border-top: 1px solid hsl(var(--border));
        padding-top: 3rem;
    }
    .events-section__label--past {
        display: flex; align-items: center; gap: .5rem;
        color: hsl(var(--muted-foreground));
    }
    .events-section__icon-past {
        width: 16px; height: 16px;
        stroke-width: 2;
    }
    .events-section__count--past {
        background: hsl(var(--muted));
        color: hsl(var(--muted-foreground));
    }
    .event-card--past {
        opacity: .75;
        filter: grayscale(.3);
        transition: opacity .3s ease, filter .3s ease;
    }
    .event-card--past:hover {
        opacity: 1;
        filter: grayscale(0);
    }
    .event-card__ended-badge {
        position: absolute;
        top: .75rem; right: .75rem;
        padding: .25rem .65rem;
        font-size: .7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .06em;
        border-radius: 6px;
        background: hsl(var(--muted));
        color: hsl(var(--muted-foreground));
        z-index: 3;
    }

    /* ── keyframes ── */
    @keyframes ev-spin {
        to { transform: rotate(360deg); }
    }
    @keyframes ev-heroSlideUp {
        from { opacity: 0; transform: translateY(20px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes ev-cardFadeUp {
        from { opacity: 0; transform: translateY(24px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes ev-pulse-dot {
        0%, 100% { box-shadow: 0 0 0 0 hsl(var(--primary) / .4); }
        50%      { box-shadow: 0 0 0 6px hsl(var(--primary) / 0); }
    }
    @keyframes ev-countdown-blink {
        0%, 100% { opacity: 1; }
        50%      { opacity: .7; }
    }
    @keyframes ev-float {
        0%, 100% { transform: translateY(0) scale(1); }
        50%      { transform: translateY(-20px) scale(1.1); }
    }
    @keyframes ev-tagPop {
        from { opacity: 0; transform: scale(.7) translateY(6px); }
        to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    @keyframes ev-dot-ring {
        0%, 100% { transform: scale(1); opacity: .6; }
        50%      { transform: scale(1.3); opacity: 0; }
    }
    @keyframes ev-sectionFadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    @keyframes ev-slideInLeft {
        from { opacity: 0; transform: translateX(-24px); }
        to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes ev-countPop {
        from { opacity: 0; transform: scale(0); }
        to   { opacity: 1; transform: scale(1); }
    }
    @keyframes ev-shimmer {
        from { transform: translateX(-100%); }
        to   { transform: translateX(100%); }
    }

/* Pages/Exchanges.razor.css */
.exchange-intro {
        position: relative;
        max-width: 72rem;
        margin: 0 auto;
        padding: 1.35rem 1.5rem;
        border-radius: 1.6rem;
        border: 1px solid hsl(var(--border) / 0.65);
        background:
            linear-gradient(145deg, hsl(var(--card) / 0.95), hsl(var(--card) / 0.82)),
            radial-gradient(circle at top right, hsl(var(--primary) / 0.12), transparent 35%);
        box-shadow: 0 24px 60px hsl(var(--background) / 0.22);
        overflow: hidden;
    }



    .exchange-intro p {
        position: relative;
        z-index: 1;
        margin: 0;
        color: hsl(var(--muted-foreground));
        line-height: 1.8;
        font-size: 1rem;
        text-align: left;
    }

/* Pages/Faq.razor.css */
.faq-page {
        background:
            radial-gradient(circle at top, hsl(var(--primary) / 0.08), transparent 28%),
            linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--background)) 100%);
    }

    .faq-page__hero {
        position: relative;
        overflow: hidden;
        padding: clamp(4.25rem, 9vw, 6.75rem) 0 clamp(2rem, 4vw, 3rem);
        isolation: isolate;
    }

    .faq-page__aurora,
    .faq-page__grid {
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .faq-page__aurora {
        filter: blur(90px);
        opacity: 0.92;
    }

    .faq-page__aurora--one {
        background: radial-gradient(circle at 18% 24%, hsl(var(--primary) / 0.22), transparent 38%);
    }

    .faq-page__aurora--two {
        background:
            radial-gradient(circle at 82% 18%, hsl(var(--accent) / 0.2), transparent 34%),
            radial-gradient(circle at 72% 72%, hsl(var(--secondary) / 0.16), transparent 30%);
    }

    .faq-page__grid {
        background-image:
            linear-gradient(hsl(var(--border) / 0.16) 1px, transparent 1px),
            linear-gradient(90deg, hsl(var(--border) / 0.16) 1px, transparent 1px);
        background-size: 72px 72px;
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 85%);
        opacity: 0.32;
    }

    .faq-page__hero-inner {
        position: relative;
        z-index: 1;
        max-width: 54rem;
        display: grid;
        gap: 0.9rem;
        text-align: center;
    }

    .faq-page__eyebrow {
        display: inline-flex;
        justify-self: center;
        padding: 0.45rem 0.9rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--primary) / 0.2);
        background: hsl(var(--primary) / 0.1);
        color: hsl(var(--primary));
        font-size: 0.74rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .faq-page__hero-inner h1,
    .faq-page__hero-inner h2 {
        margin: 0;
    }

    .faq-page__hero-inner h1 {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 6vw, 4.6rem);
        line-height: 0.98;
        font-weight: 900;
        letter-spacing: -0.045em;
        color: hsl(var(--foreground));
    }

    .faq-page__hero-inner h2 {
        font-size: clamp(1.15rem, 2.5vw, 1.55rem);
        line-height: 1.45;
        font-weight: 700;
        color: hsl(var(--foreground) / 0.92);
    }

    .faq-page__hero-inner p {
        margin: 0;
        color: hsl(var(--muted-foreground));
        line-height: 1.8;
        font-size: 1rem;
    }

/* Pages/Home.razor.css */
.section-latest {
        position: relative;
        overflow: hidden;
        padding-block: clamp(3rem, 8vw, 5rem);
        background: hsl(180 5% 3%);
        color: hsl(var(--foreground));
    }
    .section-latest::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 200px;
        background: radial-gradient(ellipse at center, hsl(var(--primary) / 0.04), transparent 70%);
        pointer-events: none;
    }
    .headline-glow {
        font-size: clamp(2.5rem, 6vw, 3.9rem);
        font-weight: 800;
        line-height: 1.1;
        color: hsl(var(--foreground));
        text-shadow:
            0 0 40px hsl(var(--primary) / 0.25),
            0 0 80px hsl(var(--primary) / 0.1),
            0 8px 24px hsl(var(--primary) / 0.15);
    }
    .headline-secondary {
        font-size: clamp(2.4rem, 5vw, 3.6rem);
        font-weight: 800;
        color: hsl(var(--foreground));
        text-align: center;
        text-shadow:
            0 0 30px hsl(var(--primary) / 0.15),
            0 4px 16px hsl(var(--background) / 0.5);
    }
    .subhead {
        max-width: 720px;
        color: hsl(var(--muted-foreground) / 0.75);
        font-size: clamp(1rem, 2.6vw, 1.18rem);
        line-height: 1.7;
    }
    .promo-shell {
        position: relative;
        border-radius: 28px;
        padding: clamp(2rem, 4vw, 3rem);
        background: hsl(var(--card) / 0.35);
        border: 1px solid hsl(var(--border) / 0.35);
        box-shadow:
            0 24px 64px hsl(var(--background) / 0.5),
            0 0 0 1px hsl(var(--foreground) / 0.03) inset;
        backdrop-filter: blur(40px) saturate(1.3);
        -webkit-backdrop-filter: blur(40px) saturate(1.3);
        overflow: hidden;
    }
    .promo-shell::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 10%, hsl(var(--foreground) / 0.12) 30%, hsl(var(--foreground) / 0.18) 50%, hsl(var(--foreground) / 0.12) 70%, transparent 90%);
        pointer-events: none;
    }
    .promo-shell::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(180deg, hsl(var(--foreground) / 0.02), transparent);
        pointer-events: none;
        border-radius: 28px 28px 0 0;
    }
    .carousel-scene {
        position: relative;
        perspective: 1600px;
    }
    .carousel-container {
        display: flex;
        align-items: stretch;
        transform-style: preserve-3d;
        will-change: transform;
        transition: transform 0.75s cubic-bezier(0.21, 0.82, 0.25, 1), gap 0.25s ease;
    }
    .carousel-container[data-mobile="True"] {
        flex-direction: row;
        align-items: stretch;
        gap: 1rem !important;
    }
    .carousel-container[data-mobile="True"] .carousel-slide {
        width: 100% !important;
        flex-shrink: 0;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        box-shadow: 0 26px 55px hsl(var(--background) / 0.55);
    }
    .carousel-slide {
        position: relative;
        border-radius: 20px;
        background: linear-gradient(165deg, 
                    hsl(var(--card) / 0.5) 0%, 
                    hsl(var(--muted) / 0.2) 100%);
        box-shadow: 0 20px 50px hsl(var(--background) / 0.6),
                    0 0 0 1px hsl(var(--foreground) / 0.03) inset;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        transform-origin: center;
        transform: translate3d(0, 0, -140px) rotateY(-16deg) scale(0.9);
        transition: transform 0.85s cubic-bezier(0.21, 0.82, 0.25, 1), 
                    opacity 0.6s ease, 
                    box-shadow 0.65s ease, 
                    filter 0.6s ease;
        opacity: 0.4;
        filter: saturate(0.7) brightness(0.85);
        overflow: hidden;
        border: 1px solid hsl(var(--border) / 0.3);
    }
    .carousel-slide.active {
        transform: translate3d(0, 0, 20px) rotateY(0deg) scale(1);
        opacity: 1;
        filter: saturate(1.1) brightness(1);
        box-shadow: 0 32px 80px hsl(var(--background) / 0.6), 
                    0 8px 30px hsl(var(--primary) / 0.1),
                    0 0 0 1px hsl(var(--primary) / 0.15) inset;
        border-color: hsl(var(--primary) / 0.25);
    }
    .carousel-slide.inactive {
        transform: translate3d(0, 0, -220px) rotateY(16deg) scale(0.88);
    }
    .carousel-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
                    hsl(var(--foreground) / 0.06) 0%, 
                    transparent 50%);
        mix-blend-mode: overlay;
        opacity: 0.5;
        pointer-events: none;
    }
    .carousel-slide.animating.active {
        animation: spotlight 0.9s ease-out;
    }
    .carousel-indicators {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .carousel-indicators button {
        position: relative;
        height: 0.4rem;
        border-radius: 9999px;
        background: hsl(var(--muted-foreground) / 0.25);
        border: none;
        width: 2rem;
        transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, width 0.3s ease;
        cursor: pointer;
    }
    .carousel-indicators button.active {
        background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
        width: 3rem;
        box-shadow: 0 8px 20px hsl(var(--primary) / 0.35);
    }
    .carousel-indicators button:hover:not(.active) {
        background: hsl(var(--muted-foreground) / 0.4);
        transform: scaleX(1.1);
    }
    .carousel-controls {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    .carousel-controls .indicator-track {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .carousel-controls button {
        position: relative;
        border-radius: 9999px;
        border: 1px solid hsl(var(--border) / 0.4);
        background: hsl(var(--card) / 0.6);
        backdrop-filter: blur(18px);
        transition: transform 0.3s ease, border 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem;
        cursor: pointer;
    }
    .carousel-controls button:not(:disabled):hover {
        transform: translateY(-2px) scale(1.05);
        border-color: hsl(var(--primary) / 0.6);
        background: hsl(var(--card) / 0.8);
        box-shadow: 0 10px 25px hsl(var(--primary) / 0.2);
    }
    .carousel-controls button:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    .register-button:hover {
        box-shadow: 0 22px 45px hsl(var(--primary) / 0.45);
    }
    @media (min-width: 768px) {
        .carousel-controls {
            gap: 1.75rem;
        }
        .carousel-controls .indicator-track {
            justify-content: center;
        }
    }
    @media (max-width: 640px) {
        .carousel-controls {
            gap: 0.75rem;
        }
        .carousel-controls button {
            padding: 0.75rem;
        }
    }
    .section-exchanges {
        position: relative;
        overflow: hidden;
        padding-block: clamp(3rem, 8vw, 5rem);
        background: hsl(200 4% 4%);
        color: hsl(var(--foreground));
    }
    .section-exchanges::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 180px;
        background: radial-gradient(ellipse at center, hsl(var(--accent) / 0.03), transparent 70%);
        pointer-events: none;
    }

    .exchange-frame {
        position: relative;
        border-radius: 34px;
        border: 1px solid hsl(var(--border) / 0.35);
        background: hsl(var(--card) / 0.4);
        box-shadow:
            0 30px 80px hsl(var(--background) / 0.5),
            0 0 0 1px hsl(var(--foreground) / 0.03) inset;
        backdrop-filter: blur(40px) saturate(1.3);
        -webkit-backdrop-filter: blur(40px) saturate(1.3);
        overflow: hidden;
    }
    .exchange-frame::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 10%, hsl(var(--foreground) / 0.1) 30%, hsl(var(--foreground) / 0.15) 50%, hsl(var(--foreground) / 0.1) 70%, transparent 90%);
        pointer-events: none;
        z-index: 5;
    }
    .exchange-frame::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 35%;
        background: linear-gradient(180deg, hsl(var(--foreground) / 0.015), transparent);
        pointer-events: none;
        border-radius: 34px 34px 0 0;
    }
    .section-divider {
        width: 100%;
        height: 1px;
        position: relative;
        z-index: 10;
        background: linear-gradient(
            to right,
            transparent 0%,
            hsl(var(--border) / 0.5) 10%,
            hsl(var(--primary) / 0.8) 50%,
            hsl(var(--border) / 0.5) 90%,
            transparent 100%
        );
        box-shadow: 0 0 20px hsl(var(--primary) / 0.3),
                    0 0 6px hsl(var(--primary) / 0.15);
        pointer-events: none;
    }

    .section-divider::before {
        content: "";
        position: absolute;
        left: 50%;
        top: -4px;
        width: 8px;
        height: 8px;
        transform: translateX(-50%) rotate(45deg);
        background: hsl(var(--primary) / 0.5);
        box-shadow: 0 0 10px hsl(var(--primary) / 0.3);
    }

    @media (max-width: 768px) {
        .section-divider {
            margin-inline: 1rem;
        }
    }

    .exchange-table {
        width: 100%;
        border-collapse: collapse;
        color: hsl(var(--foreground) / 0.92);
    }
    .exchange-table thead tr {
        color: hsl(var(--muted-foreground));
        text-transform: uppercase;
        font-size: 0.72rem;
        letter-spacing: 0.12rem;
        background: hsl(var(--muted));
    }
    .exchange-table tbody tr {
        transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s ease, box-shadow 0.45s ease, border 0.35s ease;
        border-bottom: 1px solid hsl(var(--border) / 0.5);
        background: hsl(var(--card) / 0.3);
    }
    .exchange-table tbody tr:hover {
        transform: translateY(-4px);
        border-color: hsl(var(--primary) / 0.3);
        background: hsl(var(--card) / 0.6);
        box-shadow: 0 20px 50px hsl(var(--primary) / 0.08), 
                    0 8px 25px hsl(var(--background) / 0.4),
                    0 0 0 1px hsl(var(--primary) / 0.12) inset;
    }
    .exchange-table td, .exchange-table th {
        padding: 1.2rem;
    }
    .exchange-mobile-card {
        position: relative;
        border-radius: 28px;
        background: hsl(var(--card) / 0.35);
        border: 1px solid hsl(var(--border) / 0.35);
        box-shadow:
            0 20px 52px hsl(var(--background) / 0.4),
            0 0 0 1px hsl(var(--foreground) / 0.03) inset;
        backdrop-filter: blur(36px) saturate(1.2);
        -webkit-backdrop-filter: blur(36px) saturate(1.2);
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        overflow: hidden;
    }
    .exchange-mobile-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 15%, hsl(var(--foreground) / 0.1) 40%, hsl(var(--foreground) / 0.1) 60%, transparent 85%);
        pointer-events: none;
    }
    .exchange-mobile-card .metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }
    .exchange-mobile-card .metric {
        background: hsl(var(--foreground) / 0.04);
        border: 1px solid hsl(var(--border) / 0.2);
        border-radius: 16px;
        padding: 0.7rem;
        text-align: center;
        position: relative;
        z-index: 10;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .exchange-mobile-card .metric span {
        display: block;
    }
    .exchange-mobile-card .metric span.value {
        font-size: 1rem;
        font-weight: 600;
        color: hsl(var(--foreground));
    }
    .exchange-mobile-card .metric span.label {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: hsl(var(--muted-foreground));
    }
    .section-articles {
        position: relative;
        overflow: hidden;
        padding-block: clamp(3rem, 8vw, 5rem);
        background: hsl(170 5% 3%);
        color: hsl(var(--foreground));
    }
    .section-articles::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 180px;
        background: radial-gradient(ellipse at center, hsl(var(--primary) / 0.03), transparent 70%);
        pointer-events: none;
    }

    .articles-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: clamp(2rem, 5vw, 3rem);
        text-align: center;
    }
    .articles-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
        max-width: 960px;
        margin-inline: auto;
    }

    .article-card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 100%;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid hsl(var(--border) / 0.35);
        background: hsl(var(--card) / 0.4);
        box-shadow:
            0 16px 48px hsl(var(--background) / 0.4),
            0 0 0 1px hsl(var(--foreground) / 0.03) inset;
        backdrop-filter: blur(32px) saturate(1.2);
        -webkit-backdrop-filter: blur(32px) saturate(1.2);
        text-decoration: none;
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
    }
    .article-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 10%, hsl(var(--foreground) / 0.1) 40%, hsl(var(--foreground) / 0.1) 60%, transparent 90%);
        pointer-events: none;
        z-index: 5;
    }
    .article-card:hover {
        transform: translateY(-8px);
        border-color: hsl(var(--primary) / 0.4);
        box-shadow:
            0 32px 72px hsl(var(--primary) / 0.12),
            0 12px 36px hsl(var(--background) / 0.4),
            0 0 0 1px hsl(var(--primary) / 0.15) inset;
    }
    .article-card__media {
        position: relative;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: linear-gradient(135deg, hsl(var(--muted)), hsl(var(--accent) / 0.18));
    }
    .article-card__media::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 45%;
        background: linear-gradient(180deg, transparent, hsl(var(--background) / 0.22));
        pointer-events: none;
    }
    .article-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
    }
    .article-card:hover .article-card__media img {
        transform: scale(1.06);
        filter: saturate(1.05);
    }
    .article-card__pill {
        position: absolute;
        top: 1rem;
        left: 1rem;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.45rem 0.75rem;
        border-radius: 9999px;
        background: hsl(var(--background) / 0.68);
        border: 1px solid hsl(var(--border) / 0.72);
        color: hsl(var(--foreground));
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        backdrop-filter: blur(20px);
    }
    .article-card__body {
        position: relative;
        z-index: 1;
        display: flex;
        flex: 1;
        flex-direction: column;
        gap: 0.6rem;
        padding: 1rem 1.1rem 1.15rem;
    }
    .article-card__meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        color: hsl(var(--muted-foreground));
        font-size: 0.72rem;
    }
    .article-card__meta strong {
        color: hsl(var(--foreground));
        font-weight: 600;
    }
    .article-card__dot {
        width: 0.24rem;
        height: 0.24rem;
        border-radius: 9999px;
        background: hsl(var(--primary) / 0.55);
    }
    .article-card__title {
        margin: 0;
        color: hsl(var(--foreground));
        font-size: clamp(1rem, 1.6vw, 1.15rem);
        line-height: 1.3;
    }
    .article-card__summary {
        margin: 0;
        color: hsl(var(--muted-foreground) / 0.92);
        font-size: 0.85rem;
        line-height: 1.65;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .article-card__footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 0.25rem;
    }
    .article-card__link {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        color: hsl(var(--primary));
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    .article-card__link svg {
        width: 1rem;
        height: 1rem;
        transition: transform 0.28s ease;
    }
    .article-card:hover .article-card__link svg {
        transform: translateX(3px);
    }
    .articles-browse {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        align-self: center;
        padding: 0.95rem 1.25rem;
        border-radius: 9999px;
        border: 1px solid hsl(var(--border) / 0.35);
        background: hsl(var(--card) / 0.35);
        color: hsl(var(--foreground));
        font-weight: 600;
        text-decoration: none;
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        box-shadow: 0 0 0 1px hsl(var(--foreground) / 0.03) inset;
        transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }
    .articles-browse:hover {
        transform: translateY(-2px);
        border-color: hsl(var(--primary) / 0.4);
        box-shadow: 0 16px 36px hsl(var(--primary) / 0.1),
                    0 0 0 1px hsl(var(--primary) / 0.1) inset;
    }
    .articles-browse svg {
        width: 1rem;
        height: 1rem;
    }
    @keyframes spotlight {
        0% { transform: translate3d(0, 0, 20px) scale(1.08); box-shadow: 0 35px 80px hsl(var(--primary) / 0.55); }
        100% { transform: translate3d(0, 0, 20px) scale(1.04); }
    }
    @media (max-width: 1024px) {
        .promo-shell {
            padding: clamp(1.5rem, 4vw, 2.5rem);
        }
        .carousel-slide {
            min-height: 100%;
        }
        .articles-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .exchange-table td, .exchange-table th {
            padding: 0.85rem 0.6rem;
        }
        .exchange-frame {
            border-radius: 22px;
        }
    }
    @media (max-width: 768px) {
        .articles-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }
        .section-latest {
            padding-block: 2.5rem;
        }
        .carousel-container {
            gap: 1.25rem;
            touch-action: pan-x;
            -webkit-overflow-scrolling: touch;
            justify-content: flex-start;
            transform-style: flat;
        }
        .carousel-slide {
            transform: translate3d(0, 0, 0) rotateY(0) scale(1);
            opacity: 1;
            filter: none;
            box-shadow: 0 20px 45px hsl(var(--background) / 0.5);
        }
        .carousel-slide.inactive {
            transform: translate3d(0, 0, 0) rotateY(0) scale(1);
        }
        .carousel-slide.active {
            transform: translate3d(0, 0, 0) rotateY(0deg) scale(1);
        }
        .carousel-indicators button {
            width: 1.4rem;
        }
        .carousel-indicators button.active {
            width: 2rem;
        }
        .exchange-mobile-card {
            margin-bottom: 1.75rem;
        }
        .exchange-mobile-card .metrics {
            gap: 0.6rem;
        }
        .exchange-mobile-card .metric {
            padding: 0.6rem;
        }
    }
    @media (max-width: 640px) {
        .articles-grid {
            grid-template-columns: 1fr;
        }
    }
    @media (prefers-reduced-motion: reduce) {
        .carousel-slide,
        .carousel-container {
            animation: none;
        }
    }

/* Pages/Privacy.razor.css */
.privacy-page {
        min-height: 100vh;
        padding: 3rem 0 5rem;
    }

    .privacy-content {
        max-width: 800px;
        margin: 0 auto;
        color: hsl(var(--foreground));
        line-height: 1.8;
    }

    .privacy-header {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid hsl(var(--border));
    }

    .privacy-header h1 {
        font-size: 2rem;
        font-weight: 800;
        margin: 0 0 .5rem;
    }

    .privacy-effective {
        color: hsl(var(--muted-foreground));
        font-size: .9rem;
        margin: 0;
    }

    .privacy-content section {
        margin-bottom: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.15rem;
        font-weight: 700;
        margin: 2rem 0 .75rem;
        color: hsl(var(--foreground));
    }

    .privacy-content h3 {
        font-size: 1rem;
        font-weight: 700;
        margin: 1.25rem 0 .6rem;
        color: hsl(var(--foreground));
    }

    .privacy-content p {
        margin: 0 0 .75rem;
        font-size: .92rem;
        color: hsl(var(--muted-foreground));
    }

    .privacy-content a {
        color: hsl(var(--primary));
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .privacy-content a:hover {
        opacity: .8;
    }

    .privacy-content strong {
        color: hsl(var(--foreground));
        font-weight: 600;
    }

/* Pages/ServerError.razor.css */
.tb-error-shell {
        min-height: calc(100vh - 10rem);
        display: grid;
        place-items: center;
        padding: 4rem 1.5rem 5rem;
        background:
            radial-gradient(circle at top, hsl(var(--destructive) / 0.12), transparent 30%),
            linear-gradient(180deg, hsl(var(--background)), hsl(var(--muted) / 0.4));
    }

    .tb-error-card {
        width: min(100%, 42rem);
        padding: 2.5rem;
        border-radius: 1.75rem;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card) / 0.92);
        text-align: center;
        box-shadow: 0 24px 70px hsl(var(--foreground) / 0.08);
    }

    .tb-error-mark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.45rem 1rem;
        border-radius: 999px;
        background: hsl(var(--destructive) / 0.1);
        color: hsl(var(--destructive));
        border: 1px solid hsl(var(--destructive) / 0.2);
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: 0.18em;
    }

    .tb-error-logo {
        margin: 1.5rem 0 1rem;
        display: flex;
        justify-content: center;
    }

    .tb-error-title {
        margin: 0;
        font-size: clamp(2.2rem, 5vw, 3.6rem);
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .tb-error-copy {
        margin: 1rem auto 0;
        width: min(100%, 30rem);
        color: hsl(var(--muted-foreground));
        line-height: 1.7;
        text-wrap: balance;
    }

    .tb-error-request {
        margin: 1.5rem 0 0;
        color: hsl(var(--muted-foreground));
    }

    .tb-error-request code {
        margin-left: 0.5rem;
        padding: 0.25rem 0.5rem;
        border-radius: 0.5rem;
        background: hsl(var(--muted));
        color: hsl(var(--foreground));
    }

    .tb-error-actions {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.85rem;
    }

    .tb-error-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 11rem;
        padding: 0.95rem 1.35rem;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 700;
        border: 1px solid transparent;
    }

    .tb-error-button-primary {
        background: hsl(var(--foreground));
        color: hsl(var(--background));
    }

    .tb-error-button-secondary {
        background: hsl(var(--background));
        color: hsl(var(--foreground));
        border-color: hsl(var(--border));
    }

    @media (max-width: 640px) {
        .tb-error-shell {
            padding-inline: 1rem;
        }

        .tb-error-card {
            padding: 1.5rem 1.25rem;
        }

        .tb-error-button {
            width: 100%;
        }
    }

/* Pages/Services.razor.css */
.services-page {
        position: relative;
        overflow: hidden;
        background:
            radial-gradient(circle at top, hsl(var(--primary) / 0.06), transparent 30%),
            linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--background)) 100%);
        color: hsl(var(--foreground));
    }

    .services-hero {
        position: relative;
        overflow: hidden;
        padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
        isolation: isolate;
    }

    .services-hero__aurora,
    .services-hero__grid {
        pointer-events: none;
        position: absolute;
        inset: 0;
    }

    .services-hero__aurora {
        filter: blur(90px);
        opacity: 0.9;
    }

    .services-hero__aurora--one {
        background: radial-gradient(circle at 18% 24%, hsl(var(--primary) / 0.22), transparent 42%);
        animation: services-float 14s ease-in-out infinite alternate;
    }

    .services-hero__aurora--two {
        background: radial-gradient(circle at 78% 22%, hsl(var(--accent) / 0.2), transparent 38%),
                    radial-gradient(circle at 72% 72%, hsl(var(--secondary) / 0.16), transparent 34%);
        animation: services-float-reverse 18s ease-in-out infinite alternate;
    }

    .services-hero__grid {
        background-image:
            linear-gradient(hsl(var(--border) / 0.22) 1px, transparent 1px),
            linear-gradient(90deg, hsl(var(--border) / 0.22) 1px, transparent 1px);
        background-size: 70px 70px;
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
        opacity: 0.35;
    }

    .services-hero__inner {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
        gap: clamp(1.75rem, 4vw, 3rem);
        align-items: center;
    }

    .services-hero__copy {
        display: grid;
        gap: 1rem;
        animation: services-rise 0.8s cubic-bezier(.16, 1, .3, 1) both;
    }

    .services-hero__title,
    .services-section__heading h2,
    .services-audience h2,
    .services-optimization h2,
    .services-cta__heading h2 {
        font-family: var(--font-heading);
        font-size: clamp(2.8rem, 7vw, 5.3rem);
        font-weight: 900;
        line-height: 0.98;
        letter-spacing: -0.04em;
        margin: 0;
    }

    .services-hero__subtitle {
        font-family: var(--font-heading);
        font-size: clamp(1.25rem, 2vw, 1.9rem);
        line-height: 1.2;
        color: hsl(var(--foreground) / 0.92);
        margin: 0;
        max-width: 44rem;
    }

    .services-hero__lead,
    .services-hero__support,
    .services-section__heading p,
    .services-video__meta p,
    .services-audience p,
    .services-optimization p,
    .services-cta__heading p {
        font-size: 1rem;
        line-height: 1.8;
        color: hsl(var(--muted-foreground));
        margin: 0;
    }

    .services-hero__lead {
        max-width: 48rem;
        color: hsl(var(--foreground) / 0.82);
    }

    .services-hero__actions,
    .services-cta__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        margin-top: 0.45rem;
    }

    .services-button {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 12rem;
        padding: 0.95rem 1.4rem;
        border-radius: 999px;
        border: 1px solid transparent;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
        overflow: hidden;
    }

    .services-button::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
        transform: translateX(-130%);
    }

    .services-button:hover {
        transform: translateY(-2px);
    }

    .services-button:hover::after {
        animation: services-shimmer 0.9s ease;
    }

    .services-button--primary {
        color: hsl(var(--primary-foreground));
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        box-shadow: 0 20px 45px hsl(var(--primary) / 0.28);
    }

    .services-button--primary:hover {
        box-shadow: 0 24px 55px hsl(var(--primary) / 0.34);
    }

    .services-button--ghost {
        color: hsl(var(--foreground));
        border-color: hsl(var(--border));
        background: hsl(var(--card) / 0.8);
        backdrop-filter: blur(20px);
    }

    .services-button--ghost:hover {
        border-color: hsl(var(--primary) / 0.35);
        box-shadow: 0 18px 35px hsl(var(--background) / 0.35);
    }

    .services-hero__panel {
        animation: services-rise 0.9s cubic-bezier(.16, 1, .3, 1) 0.12s both;
    }

    .services-panel {
        position: relative;
        padding: 1.35rem;
        border-radius: 1.75rem;
        border: 1px solid hsl(var(--border) / 0.85);
        background:
            linear-gradient(180deg, hsl(var(--card) / 0.96), hsl(var(--card) / 0.78)),
            radial-gradient(circle at top right, hsl(var(--primary) / 0.18), transparent 35%);
        box-shadow: 0 30px 70px hsl(var(--background) / 0.5);
        overflow: hidden;
    }

    .services-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(145deg, hsl(var(--primary) / 0.06), transparent 40%, hsl(var(--accent) / 0.08));
        opacity: 0.9;
        pointer-events: none;
    }

    .services-panel__stat,
    .services-panel__network {
        position: relative;
        z-index: 1;
    }

    .services-panel__stat {
        display: grid;
        gap: 0.15rem;
        margin-bottom: 1rem;
    }

    .services-panel__stat-value {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 5vw, 3.3rem);
        font-weight: 900;
        letter-spacing: -0.04em;
        color: hsl(var(--foreground));
    }

    .services-panel__stat-label {
        color: hsl(var(--muted-foreground));
        font-size: 0.96rem;
    }

    .services-panel__network {
        position: relative;
        height: 13rem;
        overflow: hidden;
        border-radius: 1.35rem;
        border: 1px solid hsl(var(--border));
        background:
            radial-gradient(circle at center, hsl(var(--primary) / 0.12), transparent 42%),
            linear-gradient(180deg, hsl(var(--background) / 0.35), hsl(var(--background) / 0.15));
    }

    .services-panel__network::before,
    .services-panel__network::after {
        content: "";
        position: absolute;
        inset: 50% auto auto 50%;
        width: 1px;
        height: 5rem;
        transform-origin: top center;
        background: linear-gradient(180deg, hsl(var(--primary) / 0.45), transparent);
        opacity: 0.65;
    }

    .services-panel__network::before {
        transform: translate(-50%, -50%) rotate(-52deg);
    }

    .services-panel__network::after {
        transform: translate(-50%, -50%) rotate(48deg);
    }

    .services-panel__network-ring {
        position: absolute;
        inset: 50% auto auto 50%;
        width: 7rem;
        height: 7rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--primary) / 0.22);
        transform: translate(-50%, -50%);
        animation: services-orbit 6s linear infinite;
    }

    .services-panel__network-ring--outer {
        width: 10.2rem;
        height: 10.2rem;
        border-color: hsl(var(--accent) / 0.18);
        animation-duration: 9s;
        animation-direction: reverse;
    }

    .services-panel__network-core {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 6.6rem;
        padding: 0.95rem 1rem;
        border-radius: 999px;
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        color: hsl(var(--primary-foreground));
        font-weight: 800;
        letter-spacing: 0.02em;
        box-shadow: 0 0 0 0 hsl(var(--primary) / 0.35), 0 18px 40px hsl(var(--primary) / 0.3);
        animation: services-core-pulse 2.8s ease-in-out infinite;
    }

    .services-panel__network-node {
        position: absolute;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.8rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card) / 0.9);
        color: hsl(var(--foreground) / 0.92);
        font-size: 0.78rem;
        font-weight: 700;
        box-shadow: 0 10px 24px hsl(var(--background) / 0.3);
        backdrop-filter: blur(14px);
    }

    .services-panel__network-node--one {
        left: 8%;
        top: 18%;
        animation: services-node-float-a 5.4s ease-in-out infinite;
    }

    .services-panel__network-node--two {
        right: 10%;
        top: 14%;
        animation: services-node-float-b 6.4s ease-in-out infinite;
    }

    .services-panel__network-node--three {
        left: 11%;
        bottom: 14%;
        animation: services-node-float-b 5.9s ease-in-out infinite;
    }

    .services-panel__network-node--four {
        right: 8%;
        bottom: 18%;
        animation: services-node-float-a 6.8s ease-in-out infinite;
    }

    .services-panel__network-node--five {
        left: 50%;
        bottom: 7%;
        transform: translateX(-50%);
        animation: services-node-float-c 6.1s ease-in-out infinite;
    }

    .services-card__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.8rem;
        height: 2.8rem;
        border-radius: 0.95rem;
        background: linear-gradient(135deg, hsl(var(--primary) / 0.18), hsl(var(--accent) / 0.16));
        border: 1px solid hsl(var(--primary) / 0.18);
        font-size: 1.2rem;
        box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.08);
    }

    .services-section,
    .services-video,
    .services-cta {
        position: relative;
        padding: clamp(3rem, 7vw, 5.5rem) 0;
    }

    .services-section__heading {
        display: grid;
        gap: 0.9rem;
        max-width: 48rem;
        margin-bottom: 2rem;
    }

    .services-section__heading--center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        justify-items: center;
    }

    .services-section__heading h2,
    .services-audience h2,
    .services-optimization h2,
    .services-cta__heading h2 {
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.02;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem;
    }

    .services-card,
    .services-video__slot,
    .services-audience,
    .services-optimization,
    .services-cta__shell {
        position: relative;
        border-radius: 1.6rem;
        border: 1px solid hsl(var(--border));
        background:
            linear-gradient(180deg, hsl(var(--card) / 0.94), hsl(var(--card) / 0.78)),
            radial-gradient(circle at top right, hsl(var(--primary) / 0.12), transparent 32%);
        box-shadow: 0 22px 55px hsl(var(--background) / 0.35);
        overflow: hidden;
    }

    .services-card {
        display: grid;
        gap: 1rem;
        padding: 1.4rem;
        transform: translateY(0);
        transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    }

    .services-card:hover,
    .services-video__slot:hover,
    .services-audience:hover,
    .services-optimization:hover {
        transform: translateY(-6px);
        border-color: hsl(var(--primary) / 0.28);
        box-shadow: 0 28px 65px hsl(var(--primary) / 0.16);
    }

    .services-card__beam {
        position: absolute;
        inset: -20% 45% auto -20%;
        height: 12rem;
        background: linear-gradient(135deg, hsl(var(--primary) / 0.16), transparent 75%);
        transform: rotate(12deg);
        pointer-events: none;
    }

    .services-card h3,
    .services-video__meta h3 {
        margin: 0;
        font-size: 1.18rem;
        font-weight: 800;
        color: hsl(var(--foreground));
    }

    .services-card__body,
    .services-card__note {
        margin: 0;
        color: hsl(var(--muted-foreground));
        line-height: 1.7;
    }

    .services-card__list {
        display: grid;
        gap: 0.7rem;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .services-card__list li {
        position: relative;
        padding-left: 1.5rem;
        color: hsl(var(--foreground) / 0.9);
        line-height: 1.55;
    }

    .services-card__list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.55rem;
        width: 0.55rem;
        height: 0.55rem;
        border-radius: 999px;
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        box-shadow: 0 0 0 0.28rem hsl(var(--primary) / 0.08);
    }

    .services-card__note {
        padding-top: 0.95rem;
        border-top: 1px solid hsl(var(--border));
        font-size: 0.92rem;
    }

    .services-video {
        background:
            radial-gradient(circle at center, hsl(var(--accent) / 0.07), transparent 35%),
            linear-gradient(180deg, transparent, transparent);
    }

    .services-video__stage {
        position: relative;
        padding: 1rem 0 0;
    }

    .services-video__stage::before {
        content: "";
        position: absolute;
        inset: 8% 10% 0;
        border-radius: 2rem;
        background:
            radial-gradient(circle at 50% 50%, hsl(var(--primary) / 0.12), transparent 42%),
            conic-gradient(from 180deg, hsl(var(--primary) / 0.08), transparent 26%, hsl(var(--accent) / 0.09), transparent 58%, hsl(var(--secondary) / 0.08), transparent 86%);
        filter: blur(38px);
        opacity: 0.9;
        pointer-events: none;
        animation: services-stage-drift 12s ease-in-out infinite alternate;
    }

    .services-video__glow {
        position: absolute;
        top: 15%;
        width: 18rem;
        height: 18rem;
        border-radius: 999px;
        filter: blur(90px);
        opacity: 0.28;
        pointer-events: none;
    }

    .services-video__glow--left {
        left: -4rem;
        background: hsl(var(--primary));
    }

    .services-video__glow--right {
        right: -4rem;
        background: hsl(var(--accent));
    }

    .services-video__grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.35rem;
    }

    .services-video__slot {
        padding: 1rem;
        transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
        animation: services-video-rise 0.75s cubic-bezier(.16, 1, .3, 1) both;
    }

    .services-video__slot--featured {
        margin-top: -0.8rem;
        margin-bottom: 0.8rem;
    }

    .services-video__slot--featured:hover {
        margin-top: -1rem;
        margin-bottom: 1rem;
    }

    .services-video__screen {
        position: relative;
        aspect-ratio: 16 / 9;
        border-radius: 1.2rem;
        overflow: hidden;
        border: 1px solid hsl(var(--border));
        background:
            linear-gradient(145deg, hsl(var(--background)), hsl(var(--muted)) 55%, hsl(var(--background))),
            radial-gradient(circle at 50% 20%, hsl(var(--primary) / 0.2), transparent 45%);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow:
            inset 0 1px 0 hsl(var(--foreground) / 0.05),
            0 18px 35px hsl(var(--background) / 0.32);
    }

    .services-video__screen::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(hsl(var(--foreground) / 0.03) 1px, transparent 1px),
            linear-gradient(90deg, hsl(var(--foreground) / 0.03) 1px, transparent 1px);
        background-size: 24px 24px;
        opacity: 0.8;
    }

    .services-video__screen::after {
        content: "";
        position: absolute;
        inset: -30%;
        background: linear-gradient(120deg, transparent 42%, hsl(var(--foreground) / 0.08) 50%, transparent 58%);
        transform: translateX(-35%) rotate(8deg);
        animation: services-screen-sheen 5.8s ease-in-out infinite;
    }

    .services-video__chrome {
        position: absolute;
        left: 0.8rem;
        top: 0.8rem;
        z-index: 1;
        display: flex;
        gap: 0.4rem;
    }

    .services-video__chrome span {
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 999px;
        background: hsl(var(--foreground) / 0.36);
        box-shadow: 0 0 12px hsl(var(--foreground) / 0.08);
    }

    .services-video__screen-glow {
        position: absolute;
        inset: 18% 22%;
        border-radius: 1.4rem;
        background: radial-gradient(circle at center, hsl(var(--primary) / 0.14), transparent 70%);
        filter: blur(18px);
        animation: services-screen-glow 4.5s ease-in-out infinite;
    }

    .services-video__play {
        position: relative;
        z-index: 1;
        width: 4.4rem;
        height: 4.4rem;
        border-radius: 999px;
        background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
        color: hsl(var(--primary-foreground));
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 45px hsl(var(--primary) / 0.3);
        animation: services-breath 3s ease-in-out infinite;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .services-video__play svg {
        width: 1.5rem;
        height: 1.5rem;
        margin-left: 0.15rem;
    }

    .services-video__slot:hover .services-video__play {
        transform: scale(1.08);
        box-shadow: 0 26px 58px hsl(var(--primary) / 0.42);
    }

    .services-video__scan {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent, hsl(var(--primary) / 0.18), transparent);
        transform: translateY(-110%);
        animation: services-scan 5.5s linear infinite;
    }

    .services-video__meta {
        display: grid;
        gap: 0.45rem;
        padding: 1rem 0.2rem 0.1rem;
    }

    .services-video__meta h3 {
        transition: color 0.28s ease, transform 0.28s ease;
    }

    .services-video__slot:hover .services-video__meta h3 {
        color: hsl(var(--primary));
        transform: translateX(0.18rem);
    }

    .services-section--split {
        padding-top: 1rem;
    }

    .services-split {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem;
    }

    .services-audience,
    .services-optimization {
        display: grid;
        gap: 1rem;
        padding: 1.5rem;
        transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    }

    .services-audience__cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .services-audience__pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.68rem 0.95rem;
        min-height: 3rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--border));
        background: linear-gradient(135deg, hsl(var(--muted)), hsl(var(--card)));
        color: hsl(var(--foreground) / 0.95);
        font-weight: 600;
        line-height: 1.35;
        text-align: center;
        box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.05);
        animation: services-pill-drift 8s ease-in-out infinite;
    }

    .services-audience__pill:nth-child(2n) {
        animation-delay: -1.5s;
    }

    .services-audience__pill:nth-child(3n) {
        animation-delay: -3s;
    }

    .services-audience__volume {
        display: grid;
        gap: 0.4rem;
        padding: 1rem 1rem 0 0;
        margin-top: 0.2rem;
    }

    .services-audience__volume-line {
        width: 100%;
        height: 0.4rem;
        border-radius: 999px;
        background: linear-gradient(90deg, hsl(var(--primary) / 0.22), hsl(var(--accent)), hsl(var(--secondary)));
        box-shadow: 0 10px 30px hsl(var(--accent) / 0.25);
    }

    .services-audience__volume strong {
        font-size: 1rem;
        color: hsl(var(--foreground));
    }

    .services-audience__volume span {
        color: hsl(var(--muted-foreground));
        line-height: 1.6;
    }

    .services-optimization__ladder {
        display: grid;
        gap: 0.95rem;
        margin-top: 0.35rem;
    }

    .services-optimization__step {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.1rem;
        border-radius: 1rem;
        border: 1px solid hsl(var(--border));
        background: linear-gradient(135deg, hsl(var(--muted) / 0.65), hsl(var(--card)));
        overflow: hidden;
    }

    .services-optimization__step::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, hsl(var(--primary) / 0.08), transparent 40%, hsl(var(--accent) / 0.08));
        opacity: 0.8;
    }

    .services-optimization__step strong,
    .services-optimization__step span {
        position: relative;
        z-index: 1;
    }

    .services-optimization__step strong {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 900;
        letter-spacing: -0.03em;
    }

    .services-optimization__step span {
        color: hsl(var(--muted-foreground));
        text-align: right;
    }

    .services-optimization__step--one {
        transform: translateX(0);
    }

    .services-optimization__step--two {
        transform: translateX(0.7rem);
    }

    .services-optimization__step--three {
        transform: translateX(1.4rem);
    }

    .services-cta__shell {
        padding: clamp(1.5rem, 3vw, 2rem);
        background:
            linear-gradient(160deg, hsl(var(--card) / 0.98), hsl(var(--card) / 0.82)),
            radial-gradient(circle at top left, hsl(var(--primary) / 0.14), transparent 30%);
    }

    .services-cta__shell::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 20%, hsl(var(--primary) / 0.12), transparent 26%),
            radial-gradient(circle at 80% 30%, hsl(var(--accent) / 0.11), transparent 24%);
        opacity: 0.85;
        filter: blur(40px);
        pointer-events: none;
    }

    .services-cta__heading,
    .services-cta__steps,
    .services-cta__actions {
        position: relative;
        z-index: 1;
    }

    .services-cta__heading {
        display: grid;
        gap: 0.9rem;
        max-width: 42rem;
        margin-bottom: 1.6rem;
    }

    .services-cta__steps {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
        margin-bottom: 1.6rem;
    }

    .services-cta__step {
        display: grid;
        gap: 0.45rem;
        padding: 1rem;
        border-radius: 1.05rem;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--background) / 0.24);
        backdrop-filter: blur(18px);
    }

    .services-cta__step-number {
        font-family: var(--font-heading);
        font-size: 1.35rem;
        font-weight: 900;
        letter-spacing: -0.04em;
        color: hsl(var(--primary));
    }

    .services-cta__step-text {
        color: hsl(var(--foreground) / 0.92);
        line-height: 1.6;
    }

    @media (max-width: 1100px) {
        .services-hero__inner,
        .services-split {
            grid-template-columns: 1fr;
        }

        .services-grid,
        .services-video__grid,
        .services-cta__steps {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .services-optimization__step--two,
        .services-optimization__step--three {
            transform: none;
        }

        .services-video__slot--featured {
            transform: none;
        }
    }

    @media (max-width: 720px) {
        .services-hero {
            padding-top: 3.7rem;
        }

        .services-hero__title {
            font-size: clamp(2.4rem, 14vw, 4rem);
        }

        .services-grid,
        .services-video__grid,
        .services-cta__steps {
            grid-template-columns: 1fr;
        }

        .services-button {
            width: 100%;
        }

        .services-panel,
        .services-card,
        .services-video__slot,
        .services-audience,
        .services-optimization,
        .services-cta__shell {
            border-radius: 1.25rem;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .services-hero__aurora--one,
        .services-hero__aurora--two,
        .services-panel__network-ring,
        .services-panel__network-core,
        .services-panel__network-node,
        .services-video__stage::before,
        .services-video__slot,
        .services-video__screen::after,
        .services-video__screen-glow,
        .services-video__play,
        .services-video__scan,
        .services-audience__pill {
            animation: none !important;
        }

        .services-card:hover,
        .services-video__slot:hover,
        .services-audience:hover,
        .services-optimization:hover,
        .services-button:hover {
            transform: none;
        }

        .services-video__slot:hover .services-video__meta h3,
        .services-video__slot:hover .services-video__play {
            transform: none;
        }
    }

    @keyframes services-rise {
        from {
            opacity: 0;
            transform: translateY(24px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes services-float {
        from {
            transform: translate3d(0, 0, 0) scale(1);
        }
        to {
            transform: translate3d(3%, -4%, 0) scale(1.08);
        }
    }

    @keyframes services-float-reverse {
        from {
            transform: translate3d(0, 0, 0) scale(1);
        }
        to {
            transform: translate3d(-4%, 3%, 0) scale(1.05);
        }
    }

    @keyframes services-breath {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 20px 45px hsl(var(--primary) / 0.3);
        }
        50% {
            transform: scale(1.06);
            box-shadow: 0 26px 55px hsl(var(--primary) / 0.38);
        }
    }

    @keyframes services-scan {
        0% {
            transform: translateY(-110%);
        }
        100% {
            transform: translateY(110%);
        }
    }

    @keyframes services-video-rise {
        from {
            opacity: 0;
            filter: blur(8px);
        }
        to {
            opacity: 1;
            filter: blur(0);
        }
    }

    @keyframes services-stage-drift {
        from {
            transform: scale(1) translateY(0);
        }
        to {
            transform: scale(1.04) translateY(0.4rem);
        }
    }

    @keyframes services-screen-sheen {
        0%, 100% {
            transform: translateX(-42%) rotate(8deg);
            opacity: 0;
        }
        18% {
            opacity: 0;
        }
        45% {
            transform: translateX(18%) rotate(8deg);
            opacity: 1;
        }
        70% {
            opacity: 0;
        }
    }

    @keyframes services-screen-glow {
        0%, 100% {
            opacity: 0.55;
            transform: scale(1);
        }
        50% {
            opacity: 0.95;
            transform: scale(1.08);
        }
    }

    @keyframes services-pill-drift {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3px);
        }
    }

    @keyframes services-shimmer {
        from {
            transform: translateX(-130%);
        }
        to {
            transform: translateX(130%);
        }
    }

    @keyframes services-orbit {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    @keyframes services-core-pulse {
        0%, 100% {
            box-shadow: 0 0 0 0 hsl(var(--primary) / 0.25), 0 18px 40px hsl(var(--primary) / 0.3);
            transform: translate(-50%, -50%) scale(1);
        }
        50% {
            box-shadow: 0 0 0 1rem hsl(var(--primary) / 0), 0 24px 50px hsl(var(--primary) / 0.4);
            transform: translate(-50%, -50%) scale(1.04);
        }
    }

    @keyframes services-node-float-a {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-6px);
        }
    }

    @keyframes services-node-float-b {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(6px);
        }
    }

    @keyframes services-node-float-c {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-6px);
        }
    }

/* Pages/Signup.razor.css */
.signup-altcha {
            display: block;
            width: 100%;
            max-width: 320px;
            --altcha-border-width: 1px;
            --altcha-border-radius: 0.75rem;
            --altcha-color-base: rgba(255, 255, 255, 0.02);
            --altcha-color-base-content: #f8fafc;
            --altcha-color-neutral: rgba(255, 255, 255, 0.08);
            --altcha-color-neutral-content: #cbd5e1;
            --altcha-color-primary: hsl(var(--primary));
            --altcha-color-primary-content: hsl(var(--primary-foreground));
            --altcha-color-success: hsl(var(--primary));
            --altcha-color-success-content: hsl(var(--primary-foreground));
            --altcha-color-error: rgb(239 68 68);
            --altcha-color-error-content: #fff;
            --altcha-checkbox-border-color: rgba(255, 255, 255, 0.12);
            --altcha-checkbox-outline-color: hsl(var(--primary) / 0.35);
            --altcha-input-background-color: rgba(255, 255, 255, 0.03);
            --altcha-input-color: #fff;
            --altcha-max-width: 320px;
            --altcha-shadow: none;
        }

        .signup-altcha::part(main) {
            background: transparent;
        }

/* Pages/Terms.razor.css */
.terms-page {
        min-height: 100vh;
        padding: 3rem 0 5rem;
    }

    .terms-content {
        max-width: 800px;
        margin: 0 auto;
        color: hsl(var(--foreground));
        line-height: 1.8;
    }

    .terms-header {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid hsl(var(--border));
    }

    .terms-header h1 {
        font-size: 2rem;
        font-weight: 800;
        margin: 0 0 .5rem;
    }

    .terms-effective {
        color: hsl(var(--muted-foreground));
        font-size: .9rem;
    }

    .terms-content section {
        margin-bottom: 2rem;
    }

    .terms-content h2 {
        font-size: 1.15rem;
        font-weight: 700;
        margin: 2rem 0 .75rem;
        color: hsl(var(--foreground));
    }

    .terms-content p {
        margin: 0 0 .75rem;
        font-size: .92rem;
        color: hsl(var(--muted-foreground));
    }

    .terms-content ul {
        margin: .5rem 0 1rem 1.5rem;
        padding: 0;
        list-style: disc;
    }

    .terms-content ul li {
        margin-bottom: .4rem;
        font-size: .92rem;
        color: hsl(var(--muted-foreground));
    }

    .terms-content a {
        color: hsl(var(--primary));
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .terms-content a:hover {
        opacity: .8;
    }

    .terms-content strong {
        color: hsl(var(--foreground));
        font-weight: 600;
    }

    .terms-content em {
        font-style: italic;
    }

/* Pages/Tournament.razor.css */
.t-page {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        cursor: none;
        animation: t-page-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .t-page *, .t-page *::before, .t-page *::after { cursor: none !important; }

    .tb-canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .tb-cursor {
        position: fixed;
        top: -20px;
        left: -20px;
        width: 40px;
        height: 40px;
        pointer-events: none;
        z-index: 99999;
        opacity: 0;
        transition: opacity 0.2s ease;
        color: hsl(var(--primary));
        will-change: transform;
    }

    .tb-cursor--visible {
        opacity: 1;
    }

    .tb-cursor--scan {
        color: hsl(var(--accent));
    }

    .tb-cursor--scan .tb-cursor__ring {
        opacity: 0.7;
    }

    .tb-cursor--scan .tb-cursor__corners {
        stroke-width: 2;
    }

    .tb-cursor__brackets {
        width: 40px;
        height: 40px;
        position: absolute;
        top: -20px;
        left: -20px;
    }

    .tb-cursor__brackets svg {
        width: 100%;
        height: 100%;
    }

    .tb-cursor__glow {
        position: absolute;
        width: 80px;
        height: 80px;
        top: -40px;
        left: -40px;
        border-radius: 50%;
        background: radial-gradient(circle, hsl(var(--primary) / 0.12), transparent 70%);
        pointer-events: none;
    }

    .tb-cursor--scan .tb-cursor__glow {
        background: radial-gradient(circle, hsl(var(--accent) / 0.18), transparent 70%);
    }

    .tb-scanline {
        position: absolute;
        height: 0;
        pointer-events: none;
        z-index: 50;
        opacity: 0;
        background: linear-gradient(180deg, hsl(var(--primary) / 0.06) 0%, hsl(var(--primary) / 0.12) 50%, hsl(var(--primary) / 0.06) 100%);
        border-top: 1px solid hsl(var(--primary) / 0.2);
        border-bottom: 1px solid hsl(var(--primary) / 0.2);
        transition: opacity 0.2s ease;
    }

    .t-row--scanned {
        background: hsl(var(--primary) / 0.06) !important;
    }

    .t-vol--glow {
        color: hsl(var(--primary)) !important;
        text-shadow: 0 0 8px hsl(var(--primary) / 0.5), 0 0 16px hsl(var(--primary) / 0.2);
        transition: color 0.2s ease, text-shadow 0.2s ease;
    }

    .t-intro-overlay {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: hsl(var(--background));
    }

    .t-intro-brackets {
        position: absolute;
        inset: 0;
        margin: auto;
        width: 180px;
        height: 180px;
        opacity: 0;
    }

    .t-intro-brackets svg {
        width: 100%;
        height: 100%;
    }

    .t-intro-logo {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .t-intro-logo__svg {
        width: 120px;
        height: auto;
    }

    .t-intro-logo__left,
    .t-intro-logo__right {
        opacity: 0;
    }

    .t-intro-line {
        width: 120px;
        height: 1px;
        background: hsl(var(--primary));
        margin-top: 1rem;
        transform-origin: center;
    }

    .t-intro-text {
        margin-top: 0.75rem;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.3em;
        color: hsl(var(--primary));
        opacity: 0;
    }

    .t-hero {
        position: relative;
        z-index: 3;
    }

    .t-leaderboard-section {
        position: relative;
        z-index: 3;
        padding: 3.5rem 0 5rem;
    }

    .t-hero__gradient-orb {
        position: absolute;
        border-radius: 9999px;
        filter: blur(120px);
        pointer-events: none;
        z-index: 0;
    }

    .t-hero__gradient-orb--1 {
        width: 700px; height: 700px;
        top: -30%; left: -20%;
        background: radial-gradient(circle, hsl(var(--primary) / 0.25), transparent 70%);
    }

    .t-hero__gradient-orb--2 {
        width: 500px; height: 500px;
        bottom: -25%; right: -15%;
        background: radial-gradient(circle, hsl(var(--accent) / 0.2), transparent 70%);
    }

    .t-hero__grid-bg {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(hsl(var(--primary) / 0.04) 1px, transparent 1px),
            linear-gradient(90deg, hsl(var(--primary) / 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
        pointer-events: none;
        z-index: 1;
    }

    .t-hero-content {
        padding: 5rem 0 3.5rem;
        perspective: 600px;
    }

    .t-hero-content__inner {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 3rem 2rem;
        border-radius: 1.5rem;
        background: hsl(var(--card) / 0.03);
        border: 1px solid hsl(var(--border) / 0.12);
        box-shadow: 0 0 80px hsl(var(--primary) / 0.03);
        transition: transform 0.15s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
        will-change: transform;
        overflow: hidden;
    }

    .t-hero-content__inner:hover {
        border-color: hsl(var(--primary) / 0.2);
        box-shadow: 0 0 100px hsl(var(--primary) / 0.08);
    }

    .t-live-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.375rem 1rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: hsl(var(--primary));
        background: hsl(var(--primary) / 0.1);
        border: 1px solid hsl(var(--primary) / 0.2);
        backdrop-filter: blur(8px);
        margin-bottom: 1.5rem;
    }

    .t-live-badge__dot {
        position: relative;
        display: inline-flex;
        width: 8px;
        height: 8px;
    }

    .t-live-badge__ping {
        position: absolute;
        inset: 0;
        border-radius: 9999px;
        background: hsl(var(--primary));
        animation: t-ping 1.5s cubic-bezier(0, 0, .2, 1) infinite;
    }

    .t-live-badge__dot::after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 9999px;
        background: hsl(var(--primary));
        position: relative;
        z-index: 1;
    }

    .t-hero__title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        line-height: 1.1;
        color: hsl(var(--foreground));
        margin-bottom: 0.75rem;
    }

    .t-hero__subtitle {
        font-size: 1rem;
        color: hsl(var(--muted-foreground));
        margin-bottom: 1.25rem;
        max-width: 28rem;
    }

    .t-hero__date {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: hsl(var(--muted-foreground));
        margin-bottom: 2rem;
    }

    .t-hero__date svg {
        color: hsl(var(--primary));
    }

    .t-days-badge {
        display: inline-block;
        margin-left: 0.5rem;
        padding: 0.125rem 0.625rem;
        border-radius: 9999px;
        background: hsl(var(--primary) / 0.1);
        color: hsl(var(--primary));
        font-size: 0.8125rem;
        font-weight: 600;
    }

    .t-stats-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 40rem;
    }

    .t-stat {
        background: hsl(var(--card) / 0.5);
        backdrop-filter: blur(20px);
        border: 1px solid hsl(var(--border) / 0.4);
        border-radius: 1rem;
        padding: 1.25rem 1rem;
        text-align: center;
        transition: transform 0.3s cubic-bezier(.16,1,.3,1), border-color 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .t-stat::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(135deg, hsl(var(--primary) / 0.2), transparent 50%, hsl(var(--accent) / 0.15));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .t-stat:hover {
        transform: translateY(-6px) scale(1.02);
        border-color: hsl(var(--primary) / 0.3);
        box-shadow: 0 16px 40px hsl(var(--primary) / 0.08), 0 0 20px hsl(var(--primary) / 0.04);
    }

    .t-stat:hover::before {
        opacity: 1;
    }

    .t-stat__icon {
        width: 42px; height: 42px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.75rem;
        background: hsl(var(--primary) / 0.1);
        color: hsl(var(--primary));
    }

    .t-stat__label {
        font-size: 0.6875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: hsl(var(--muted-foreground));
        margin-bottom: 0.375rem;
    }

    .t-stat__value {
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1.1;
        color: hsl(var(--foreground));
    }

    .t-stat__sub {
        font-size: 0.6875rem;
        color: hsl(var(--muted-foreground) / 0.6);
        margin-top: 0.25rem;
    }

    .t-joined-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 2.5rem;
        border-radius: 0.875rem;
        background: hsl(var(--primary) / 0.1);
        border: 1px solid hsl(var(--primary) / 0.25);
        color: hsl(var(--primary));
        font-weight: 600;
        font-size: 1.0625rem;
    }

    .t-join-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 3rem;
        font-size: 1.0625rem;
        font-weight: 700;
        color: hsl(var(--primary-foreground));
        background: hsl(var(--primary));
        border-radius: 0.875rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(.16,1,.3,1);
        box-shadow: 0 0 20px hsl(var(--primary) / 0.25), 0 4px 12px hsl(var(--primary) / 0.15);
        animation: t-btn-glow 3s ease-in-out infinite;
    }

    .t-join-btn:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 0 40px hsl(var(--primary) / 0.35), 0 12px 28px hsl(var(--primary) / 0.2);
    }

    .t-join-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

    .t-details-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2.25rem;
        font-size: 1.0625rem;
        font-weight: 600;
        color: hsl(var(--foreground));
        background: hsl(var(--card) / 0.5);
        backdrop-filter: blur(8px);
        border: 1px solid hsl(var(--border));
        border-radius: 0.875rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .t-details-btn:hover {
        border-color: hsl(var(--primary) / 0.4);
        background: hsl(var(--primary) / 0.06);
        transform: translateY(-3px);
        color: hsl(var(--primary));
    }

    .t-podium {
        background: hsl(var(--card));
        border: 1px solid hsl(var(--border));
        border-radius: 1rem;
        padding: 1.25rem 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .t-podium:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px hsl(var(--primary) / 0.08);
    }

    .t-podium--gold {
        border-color: hsl(var(--primary) / 0.3);
        background: hsl(var(--primary) / 0.03);
    }

    .t-podium__crown {
        color: hsl(var(--primary));
        margin-bottom: -0.25rem;
        animation: t-crown 3s ease-in-out infinite;
    }

    .t-podium__medal {
        width: 40px; height: 40px;
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.125rem;
        font-weight: 800;
        color: hsl(var(--background));
    }

    .t-podium__medal--gold { background: hsl(var(--primary)); }
    .t-podium__medal--silver { background: hsl(var(--muted-foreground)); }
    .t-podium__medal--bronze { background: hsl(var(--accent)); }

    .t-podium__email {
        font-size: 0.8rem;
        font-weight: 600;
        color: hsl(var(--foreground));
        word-break: break-all;
    }

    .t-podium__exchanges {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .t-podium__volume {
        font-size: 1.125rem;
        font-weight: 800;
        color: hsl(var(--foreground));
    }

    .t-podium__volume--gold {
        color: hsl(var(--primary));
    }

    .t-podium__cashback {
        font-size: 0.7rem;
        color: hsl(var(--muted-foreground));
    }

    .t-rank {
        width: 32px; height: 32px;
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 800;
        color: hsl(var(--background));
    }

    .t-rank--gold { background: hsl(var(--primary)); }
    .t-rank--silver { background: hsl(var(--muted-foreground)); }
    .t-rank--bronze { background: hsl(var(--accent)); }

    /* Leaderboard Table */
    .t-table-header {
        display: grid;
        grid-template-columns: 56px 1fr auto auto auto;
        gap: 0;
        padding: 0.75rem 1.25rem;
        border-bottom: 1px solid hsl(var(--border));
        background: hsl(var(--muted) / 0.5);
    }

    .t-table-header__col {
        font-size: 0.6875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: hsl(var(--muted-foreground));
        display: flex;
        align-items: center;
    }

    .t-table-header__col--rank { justify-content: flex-start; }
    .t-table-header__col--trader { justify-content: flex-start; }
    .t-table-header__col--exchanges { justify-content: center; min-width: 80px; }
    .t-table-header__col--cashback { justify-content: flex-end; min-width: 90px; }
    .t-table-header__col--volume { justify-content: flex-end; min-width: 100px; }

    .t-table-body {
        display: flex;
        flex-direction: column;
    }

    .t-table-row {
        display: grid;
        grid-template-columns: 56px 1fr auto auto auto;
        gap: 0;
        padding: 0.75rem 1.25rem;
        align-items: center;
        border-bottom: 1px solid hsl(var(--border) / 0.5);
        transition: background 0.15s ease;
    }

    .t-table-row:last-child {
        border-bottom: none;
    }

    .t-table-row:hover {
        background: hsl(var(--muted) / 0.3);
    }

    .t-table-row--top {
        background: hsl(var(--primary) / 0.03);
    }

    .t-table-row__rank {
        display: flex;
        align-items: center;
    }

    .t-table-row__trader {
        display: flex;
        align-items: center;
        min-width: 0;
        overflow: hidden;
    }

    .t-table-row__trader span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .t-table-row__exchanges {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-width: 80px;
    }

    .t-table-row__cashback {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 90px;
    }

    .t-table-row__volume {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 100px;
    }

    /* Prize Distribution */
    .t-prizes {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .t-prize-card {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: 1rem 1.25rem;
        border-radius: 0.875rem;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card));
        flex: 1 1 auto;
        min-width: 200px;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .t-prize-card:hover {
        transform: translateY(-2px);
    }

    .t-prize-card--top {
        border-color: hsl(var(--primary) / 0.25);
        background: hsl(var(--primary) / 0.04);
    }

    .t-prize-card--top:hover {
        border-color: hsl(var(--primary) / 0.4);
    }

    .t-prize-card__rank {
        width: 36px; height: 36px;
        border-radius: 10px;
        background: hsl(var(--muted));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8125rem;
        font-weight: 800;
        color: hsl(var(--muted-foreground));
        flex-shrink: 0;
    }

    .t-prize-card__rank--gold {
        background: hsl(var(--primary) / 0.15);
        color: hsl(var(--primary));
    }

    .t-prize-card__rank--silver {
        background: hsl(var(--muted-foreground) / 0.15);
        color: hsl(var(--muted-foreground));
    }

    .t-prize-card__rank--bronze {
        background: hsl(var(--accent) / 0.15);
        color: hsl(var(--accent));
    }

    .t-prize-card__amount {
        font-size: 1.0625rem;
        font-weight: 800;
        color: hsl(var(--foreground));
        white-space: nowrap;
    }

    .t-prize-card__currency {
        font-size: 0.6875rem;
        font-weight: 600;
        color: hsl(var(--muted-foreground));
        margin-left: 0.25rem;
    }

    .t-prize-card__label {
        font-size: 0.75rem;
        color: hsl(var(--muted-foreground));
        margin-left: auto;
    }

    .t-row {
        animation: t-row-slide 0.5s ease-out both;
    }

    @media (max-width: 640px) {
        .t-table-header__col--exchanges,
        .t-table-header__col--cashback,
        .t-table-row__exchanges,
        .t-table-row__cashback {
            display: none;
        }

        .t-table-header,
        .t-table-row {
            grid-template-columns: 48px 1fr auto;
        }

        .t-table-header {
            padding: 0.625rem 1rem;
        }

        .t-table-row {
            padding: 0.625rem 1rem;
        }

        .t-prize-card {
            min-width: 100%;
        }
    }

    @media (min-width: 641px) and (max-width: 768px) {
        .t-table-header__col--cashback,
        .t-table-row__cashback {
            display: none;
        }

        .t-table-header,
        .t-table-row {
            grid-template-columns: 56px 1fr auto auto;
        }
    }

    .t-hero__actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    @media (min-width: 640px) {
        .t-hero__actions {
            flex-direction: row;
        }
    }

    @keyframes t-page-enter {
        from { opacity: 0; transform: translateY(12px) scale(0.985); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes t-ping {
        75%, 100% { transform: scale(2.5); opacity: 0; }
    }

    @keyframes t-btn-glow {
        0%, 100% { box-shadow: 0 0 20px hsl(var(--primary) / 0.25), 0 4px 12px hsl(var(--primary) / 0.15); }
        50% { box-shadow: 0 0 35px hsl(var(--primary) / 0.4), 0 8px 24px hsl(var(--primary) / 0.25); }
    }

    @keyframes t-crown {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        25% { transform: translateY(-3px) rotate(-4deg); }
        75% { transform: translateY(-3px) rotate(4deg); }
    }

    @keyframes t-row-slide {
        from { opacity: 0; transform: translateX(-20px); }
        to { opacity: 1; transform: translateX(0); }
    }

    @media (max-width: 640px) {
        .t-hero-content {
            padding: 3rem 0 2rem;
        }

        .t-hero-content__inner {
            padding: 2rem 1.25rem;
            border-radius: 1rem;
        }

        .t-stats-row {
            grid-template-columns: 1fr;
        }

        .t-podium {
            padding: 0.75rem 0.5rem;
        }

        .t-podium__volume {
            font-size: 0.95rem;
        }

        .t-podium__email {
            font-size: 0.65rem;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .t-hero__canvas {
            display: none;
        }

        .t-hero-content__inner {
            transform: none !important;
        }

        .t-row,
        .t-podium__crown,
        .t-join-btn {
            animation: none !important;
        }

        .t-hero-content .t-live-badge,
        .t-hero-content .t-hero__title,
        .t-hero-content .t-hero__subtitle,
        .t-hero-content .t-hero__date,
        .t-hero-content .t-stat,
        .t-hero-content .t-hero__actions {
            opacity: 1 !important;
            transform: none !important;
        }
    }

/* Pages/Admin/Dashboard.razor.css */
.admin-feed-live {
        background: hsl(var(--muted));
    }

    .admin-feed-live-dot {
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 9999px;
        background: hsl(var(--primary));
        animation: admin-feed-pulse 1.8s ease-in-out infinite;
    }

    .admin-feed-latest {
        animation: admin-feed-slide-in 0.35s ease-out;
        border-color: hsl(var(--primary) / 0.2);
        background: linear-gradient(180deg, hsl(var(--primary) / 0.05), hsl(var(--background)));
    }

    @keyframes admin-feed-pulse {
        0%, 100% {
            opacity: 0.45;
            transform: scale(0.9);
        }
        50% {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes admin-feed-slide-in {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* Pages/Admin/Users.razor.css */
.admin-user-connection-chip {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.45rem 0.75rem;
        border-radius: 999px;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--background));
        max-width: 100%;
    }

    .admin-user-connection-chip--active {
        border-color: hsl(var(--primary) / 0.3);
        background: linear-gradient(135deg, hsl(var(--primary) / 0.08), hsl(var(--background)));
    }

    .admin-user-connection-chip--inactive {
        opacity: 0.72;
    }

    .admin-user-connection-chip__exchange {
        font-size: 0.75rem;
        font-weight: 700;
        color: hsl(var(--foreground));
        white-space: nowrap;
    }

    .admin-user-connection-chip__uid {
        font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
        font-size: 0.75rem;
        color: hsl(var(--muted-foreground));
        white-space: nowrap;
    }
