/* ============================================
   Spendenseite — Palestine Flag Design
   Color Palette:
     Primary:  #1A1A1A (black)
     Accent:   #009736 (green)
     CTA:      #CE1126 (red)
     Light BG: #F7F9FC
     Dark BG:  #111111
   Palestine Flag: Green, Red, White, Black
   ============================================ */

/* --- Base & Typography --- */
body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #2D3748;
    background: #F7F9FC;
    overflow-x: hidden;
}

body > .container-fluid,
body > section:last-of-type {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    color: #1A1A1A;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in / Zoom */
.scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children — set via JS data-stagger-delay or CSS custom property */
.stagger-item {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Manual stagger delays */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* --- Card Hover Effects --- */
.card-hover-lift {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.card-hover-lift:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

.card-hover-glow {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    border: 1px solid transparent !important;
}
.card-hover-glow:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(0, 151, 54, 0.3) !important;
    box-shadow: 0 0 20px rgba(0, 151, 54, 0.15), 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

/* --- Button Animations --- */
.btn-pulse {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(206, 17, 38, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(206, 17, 38, 0.6), 0 0 60px rgba(206, 17, 38, 0.2); }
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(206, 17, 38, 0.5), 0 6px 20px rgba(206, 17, 38, 0.35) !important;
}

/* --- Counter Animation --- */
.counter-up {
    display: inline-block;
}

/* --- Gradient Animations --- */
.gradient-animate {
    background-size: 200% 200% !important;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text {
    background: linear-gradient(135deg, #CE1126, #009736, #1A1A1A, #CE1126);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 5s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Floating Animation --- */
.float {
    animation: floatBob 3s ease-in-out infinite;
}

.float-slow {
    animation: floatBob 5s ease-in-out infinite;
}

.float-delay-1 { animation-delay: -1s; }
.float-delay-2 { animation-delay: -2s; }
.float-delay-3 { animation-delay: -3s; }

@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Parallax --- */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20% 0;
    z-index: 0;
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 1;
}

/* --- Shimmer / Shine Effect --- */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-25deg);
    animation: shimmerSlide 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerSlide {
    0%, 100% { left: -60%; }
    50% { left: 120%; }
}

/* --- Glowing Border --- */
.glow-border {
    position: relative;
    overflow: hidden;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(45deg, #CE1126, #009736, #3a6ab5, #CE1126);
    background-size: 300% 300%;
    animation: glowRotate 4s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-border:hover::before {
    opacity: 1;
}

@keyframes glowRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Typewriter Effect --- */
.typewriter {
    overflow: hidden;
    border-right: 3px solid #CE1126;
    white-space: nowrap;
    animation: typewriterCursor 0.7s step-end infinite;
    display: inline-block;
    width: 0;
}

.typewriter.typing {
    animation: typewriterType 2.5s steps(40, end) forwards, typewriterCursor 0.7s step-end infinite;
}

@keyframes typewriterType {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes typewriterCursor {
    from, to { border-color: #CE1126; }
    50% { border-color: transparent; }
}

/* --- Ripple Effect on click --- */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Tilt / 3D perspective on hover --- */
.tilt-card {
    perspective: 800px;
}

.tilt-card-inner {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

/* --- Progress bar animated stripes --- */
.progress-bar-animated-stripes {
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 1rem 1rem;
    animation: progressStripes 1s linear infinite;
}

@keyframes progressStripes {
    from { background-position: 1rem 0; }
    to { background-position: 0 0; }
}

/* --- Animated underline on hover --- */
.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #009736;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* --- Reveal from bottom with mask --- */
.reveal-up {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.visible {
    clip-path: inset(0 0 0 0);
}

/* --- Rotating icon animation --- */
.spin-slow {
    animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Particle dots background --- */
.particle-bg {
    position: relative;
    overflow: hidden;
}

.particle-bg .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 151, 54, 0.2);
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-40px) translateX(20px); opacity: 0.7; }
    50% { transform: translateY(-60px) translateX(-10px); opacity: 0.5; }
    75% { transform: translateY(-30px) translateX(15px); opacity: 0.8; }
}

/* Reduced motion: respect user preference */
@media (prefers-reduced-motion: reduce) {
    .fade-in, .slide-in-left, .slide-in-right, .scale-in, .stagger-item, .reveal-up {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        transition: none !important;
    }
    .float, .float-slow, .spin-slow, .btn-pulse, .shimmer::after,
    .gradient-animate, .gradient-text, .particle-bg .particle,
    .progress-bar-animated-stripes, .typewriter {
        animation: none !important;
    }
}

/* --- Navbar (Glassmorphism, Fixed) --- */
.navbar-glass {
    background: rgba(17, 17, 17, 0.92) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    z-index: 1050;
}

.navbar-glass.scrolled {
    background: rgba(17, 17, 17, 0.97) !important;
    padding: 0.35rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-glass .navbar-brand {
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.navbar-glass .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.navbar-glass .nav-link:hover,
.navbar-glass .nav-link:focus {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-glass .nav-link.active-page {
    color: #fff !important;
    background: rgba(0, 151, 54, 0.2);
}

/* Nav Language Toggle */
.nav-lang-toggle {
    font-size: 1.1rem !important;
    padding: 0.35rem 0.6rem !important;
}

/* Navbar Toggler (Mobile) */
.navbar-glass .navbar-toggler {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.5rem;
}

.navbar-glass .navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown Dark Styling */
.navbar-glass .dropdown-menu-dark {
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.navbar-glass .dropdown-item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.navbar-glass .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-glass .dropdown-item.active {
    background: rgba(0, 151, 54, 0.25);
}

.navbar-glass .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.3rem 0;
}

/* Nav Spacer (compensates for fixed navbar) */
#navSpacer {
    height: 56px;
}

/* Mobile Nav */
@media (max-width: 991.98px) {
    .navbar-glass .navbar-collapse {
        background: rgba(17, 17, 17, 0.98);
        border-radius: 0 0 12px 12px;
        padding: 0.75rem;
        margin-top: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-top: none;
    }

    .navbar-glass .nav-link {
        padding: 0.6rem 1rem !important;
    }

    .navbar-glass .dropdown-menu-dark {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 1rem;
    }

    #navSpacer {
        height: 52px;
    }
}

/* --- Ticker Bar --- */
.ticker-wrapper {
    background: #111111;
    border-bottom: 2px solid rgba(0, 151, 54, 0.4);
    overflow: hidden;
    padding: 0.45rem 0;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0 2rem;
}

.ticker-sep {
    color: #009736;
    font-size: 0.75rem;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Hero Section --- */
/* --- Hero Slideshow --- */
.hero-slideshow {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    background: #111111;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 85vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    position: relative;
    min-height: 85vh;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.75;
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem 1.5rem 2.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-slide-content h1,
.hero-slide-content h2 {
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero-slide-content .lead {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-slide-content .slide-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.3rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Slide enter animation */
.hero-slide.active .hero-slide-content {
    animation: slideContentIn 0.8s ease forwards;
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-arrow-left {
    left: 1.5rem;
}

.hero-arrow-right {
    right: 1.5rem;
}

/* Dot Indicators */
.hero-dots {
    position: absolute;
    bottom: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* Timer Progress Bar */
.hero-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.hero-timer-bar {
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.1s linear;
}

/* Hero CTA Button */
.btn-cta {
    background: #CE1126;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(206, 17, 38, 0.35);
}

.btn-cta:hover {
    background: #A80D1E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 17, 38, 0.45);
}

/* Trust Badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge i {
    color: #009736;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Cards (General) --- */
.card {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Donation Cards --- */
.donation-card {
    border-radius: 14px;
    border: none;
    border-top: 4px solid #1A1A1A;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.12);
}

.donation-card.accent-teal {
    border-top-color: #009736;
}

.donation-card.accent-orange {
    border-top-color: #CE1126;
}

.donation-card.accent-gold {
    border-top-color: #D4A017;
}

.donation-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.donation-icon.icon-blue {
    background: rgba(26, 26, 26, 0.08);
    color: #1A1A1A;
}

.donation-icon.icon-teal {
    background: rgba(0, 151, 54, 0.08);
    color: #009736;
}

.donation-icon.icon-gold {
    background: rgba(212, 160, 23, 0.08);
    color: #D4A017;
}

/* Copy Button (IBAN) */
.btn-copy {
    background: none;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy:hover {
    border-color: #1A1A1A;
    color: #1A1A1A;
}

/* --- Progress Section --- */
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress {
    border-radius: 20px;
    overflow: hidden;
    background: #E8EDF2;
    height: 20px;
}

.progress-bar {
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    background: linear-gradient(90deg, #009736, #00B341);
    box-shadow: 0 0 12px rgba(0, 151, 54, 0.35);
    transition: width 1.5s ease-in-out;
}

/* --- Gallery (Index Preview) --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.75), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Gallery Preview Strip (Index) --- */
.gp-preview-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.gp-preview-item {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
}

.gp-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gp-preview-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.gp-preview-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 1.4rem;
}

.gp-preview-item:hover .gp-preview-hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .gp-preview-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .gp-preview-item { border-radius: 10px; }
}

@media (max-width: 480px) {
    .gp-preview-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .gp-preview-item { border-radius: 8px; }
}

/* --- FAQ --- */
.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 151, 54, 0.1);
    color: #009736;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: #1A1A1A;
    background: #fff;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 151, 54, 0.04);
    color: #1A1A1A;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 151, 54, 0.3);
}

.accordion-button::after {
    filter: none;
}

/* --- Trust Section --- */
.trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.trust-icon.icon-transparency {
    background: rgba(26, 26, 26, 0.08);
    color: #1A1A1A;
}

.trust-icon.icon-direct {
    background: rgba(0, 151, 54, 0.08);
    color: #009736;
}

.trust-icon.icon-hundred {
    background: rgba(206, 17, 38, 0.08);
    color: #CE1126;
}

/* --- Contact Cards --- */
.contact-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.1);
}

.contact-card i {
    color: #1A1A1A;
}

.contact-card a {
    color: #1A1A1A;
    font-weight: 500;
}

.contact-card a:hover {
    color: #009736;
}

/* --- Footer --- */
.footer-custom {
    background: linear-gradient(135deg, #111111 0%, #1A1A1A 100%);
    color: rgba(255, 255, 255, 0.7);
}

.footer-custom h6 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.footer-custom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-custom a:hover {
    color: #009736;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Admin: Sidebar --- */
.sidebar {
    min-height: calc(100vh - 200px);
    background: #fff;
    border-right: 1px solid #E8EDF2;
    border-radius: 14px;
}

.sidebar .nav-link {
    color: #4A5568;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    margin-bottom: 2px;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.2s ease;
}

.sidebar .nav-link:hover {
    background: #F7F9FC;
    color: #1A1A1A;
}

.sidebar .nav-link.active {
    background: rgba(26, 26, 26, 0.06);
    color: #1A1A1A !important;
    font-weight: 700;
}

.sidebar .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #009736;
    border-radius: 0 3px 3px 0;
}

/* RTL sidebar accent bar */
[dir="rtl"] .sidebar .nav-link.active::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

[dir="rtl"] .sidebar {
    border-left: 1px solid #E8EDF2;
    border-right: none;
}

/* --- Admin: Stat Cards --- */
.stat-card {
    background: #fff;
    border-radius: 14px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stat-card .card-body {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card .stat-bar {
    width: 4px;
    height: 48px;
    border-radius: 4px;
    flex-shrink: 0;
}

.stat-card .stat-bar.bar-green { background: #009736; }
.stat-card .stat-bar.bar-blue { background: #1A1A1A; }
.stat-card .stat-bar.bar-cyan { background: #009736; }
.stat-card .stat-bar.bar-amber { background: #F59E0B; }
.stat-card .stat-bar.bar-gray { background: #94A3B8; }

.stat-card .stat-icon {
    color: #94A3B8;
    font-size: 1.3rem;
}

.stat-card h6 {
    font-size: 0.78rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stat-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 0;
}

/* --- Section Styling --- */
.section-heading {
    font-weight: 800;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}

.section-subtext {
    color: #6c757d;
    font-size: 1.1rem;
}

/* --- Admin: Avatar --- */
.admin-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.08);
    color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* --- Admin: Main Content Area --- */
.admin-main {
    background: #F7F9FC;
    min-height: calc(100vh - 200px);
}

/* --- Admin: Dashboard Mini Cards --- */
.dash-mini-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px !important;
}

.dash-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.dash-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto;
}

/* --- Admin: Quick Action Icons --- */
.dash-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* --- Admin: Drag & Drop Upload Zone --- */
.dropzone-area {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    text-align: center;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    background: #FAFBFC;
    cursor: pointer;
    position: relative;
}

.dropzone-area:hover {
    border-color: #adb5bd;
    background: #F4F6F8;
}

.dropzone-area.dragover {
    border-color: #009736;
    background: rgba(0, 151, 54, 0.06);
    border-style: solid;
}

.dropzone-icon {
    font-size: 3rem;
    color: #adb5bd;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.dropzone-area:hover .dropzone-icon {
    color: #6c757d;
}

.dropzone-area.dragover .dropzone-icon {
    color: #009736;
}

.dropzone-icon.pulse {
    animation: dropzonePulse 1s ease-in-out infinite;
}

@keyframes dropzonePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* Upload Queue */
.upload-queue {
    border-top: 1px solid #E8EDF2;
}

.upload-items {
    max-height: 320px;
    overflow-y: auto;
}

.upload-item {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #F0F2F5;
    transition: background 0.2s;
}

.upload-item:last-child {
    border-bottom: none;
}

.upload-item:hover {
    background: #FAFBFC;
}

.upload-item-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upload-item-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #E8EDF2;
    flex-shrink: 0;
}

.upload-item-info {
    flex: 1;
    min-width: 0;
}

.upload-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-item-size {
    font-size: 0.75rem;
}

.upload-item-status {
    flex-shrink: 0;
}

/* --- Admin: Gallery Cards --- */
.gallery-admin-card {
    border-radius: 10px !important;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-admin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gallery-admin-img {
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-admin-card:hover .gallery-admin-img {
    transform: scale(1.02);
}

.gallery-sort-item {
    cursor: grab;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-sort-item:active {
    cursor: grabbing;
}

.gallery-sort-item.drag-over .gallery-admin-card {
    outline: 2px dashed #009736;
    outline-offset: 4px;
    transform: scale(0.97);
}

/* --- Admin: Breadcrumb --- */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #6c757d;
}

.breadcrumb-item a:hover {
    color: #1A1A1A;
}

.breadcrumb-item.active {
    color: #1A1A1A;
    font-weight: 600;
}

/* --- Admin: Toast Overrides --- */
.toast {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* --- Crypto Wizard Modal --- */
.crypto-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #111111, #1A1A1A);
}

.crypto-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.crypto-step.active {
    color: #fff;
}

.crypto-step.completed {
    color: #009736;
}

.crypto-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.crypto-step.active .crypto-step-num {
    background: #fff;
    color: #1A1A1A;
}

.crypto-step.completed .crypto-step-num {
    background: #009736;
    color: #fff;
}

.crypto-step-line {
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 0.75rem;
    transition: background 0.3s ease;
}

.crypto-step-line.active {
    background: #009736;
}

/* Coin Selection Cards */
.coin-select-card {
    position: relative;
    background: #F8F9FA;
    border: 2px solid #E8EDF2;
    border-radius: 12px;
    padding: 1.2rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.coin-select-card:hover {
    border-color: #adb5bd;
    background: #F0F2F5;
}

.coin-select-card.selected {
    border-color: #009736;
    background: rgba(0, 151, 54, 0.06);
    box-shadow: 0 0 0 3px rgba(0, 151, 54, 0.15);
}

.coin-select-icon {
    font-size: 1.8rem;
    color: #6c757d;
    transition: color 0.2s;
}

.coin-select-card.selected .coin-select-icon {
    color: #1A1A1A;
}

.coin-select-check {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #009736;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.coin-select-card.selected .coin-select-check {
    opacity: 1;
    transform: scale(1);
}

/* Receipt Option Cards */
.receipt-option-card {
    background: #F8F9FA;
    border: 2px solid #E8EDF2;
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: #6c757d;
}

.receipt-option-card:hover {
    border-color: #adb5bd;
    background: #F0F2F5;
}

.receipt-option-card.selected {
    border-color: #1A1A1A;
    background: rgba(26, 26, 26, 0.05);
    color: #1A1A1A;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

/* Wallet Display */
.wallet-card {
    background: #F8F9FA;
    border: 1px solid #E8EDF2;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.wallet-qr {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 2px solid #E8EDF2;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wallet-qr:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.qr-zoom-hint {
    font-size: 0.7rem;
    color: #adb5bd;
    cursor: pointer;
}

.wallet-address {
    font-size: 0.75rem;
    word-break: break-all;
    display: inline-block;
    max-width: min(320px, 90vw);
    color: #333;
}

.btn-copy-wallet {
    vertical-align: middle;
}

/* QR Zoom Overlay */
.qr-zoom-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.qr-zoom-overlay.show {
    opacity: 1;
}

.qr-zoom-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 380px;
    width: 90%;
    animation: qrZoomIn 0.25s ease forwards;
}

@keyframes qrZoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.qr-zoom-content img {
    width: 280px;
    height: 280px;
    border-radius: 12px;
    border: 3px solid #E8EDF2;
}

.qr-zoom-label {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 0;
}

.qr-zoom-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #F0F2F5;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qr-zoom-close:hover {
    background: #dee2e6;
    color: #333;
}

/* --- Earth Globe & Beitrag Gallery --- */
#globe-wrapper {
    width: 100%;
    max-width: 460px;
    position: relative;
}

#globe-sphere {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    cursor: grab;
    box-shadow:
        0 0 50px rgba(30, 80, 180, 0.2),
        0 0 100px rgba(30, 80, 180, 0.1),
        inset 0 0 60px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
}

/* Earth texture layer — scrolling background for rotation */
#globe-earth {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: url('/static/img/earth-map.jpg');
    background-size: 200% 100%;
    background-repeat: repeat-x;
    pointer-events: none;
}

/* Atmosphere glow around edges */
.globe-atmosphere {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    box-shadow:
        inset 0 0 40px rgba(100, 180, 255, 0.15),
        inset -20px 0 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(100, 180, 255, 0.08);
    pointer-events: none;
    z-index: 1;
}

/* Light reflection / shine */
.globe-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(
            ellipse at 28% 22%,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.06) 25%,
            transparent 55%
        ),
        linear-gradient(
            to right,
            transparent 0%,
            transparent 55%,
            rgba(0, 0, 0, 0.35) 85%,
            rgba(0, 0, 0, 0.55) 100%
        );
    pointer-events: none;
    z-index: 3;
}

/* Markers on the globe */
.globe-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--marker-color, #009736);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    z-index: 5;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
    box-shadow: 0 0 8px var(--marker-color, #009736), 0 0 16px rgba(0, 0, 0, 0.4);
    padding: 0;
    outline: none;
}

.globe-marker::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--marker-color, #009736);
    opacity: 0;
    animation: markerPulse 2.5s ease-out infinite;
}

.globe-marker-big {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 12px var(--marker-color, #CE1126), 0 0 24px rgba(206, 17, 38, 0.4);
}

.globe-marker-big::before {
    inset: -8px;
}

.globe-marker:hover {
    transform: translate(-50%, -50%) scale(1.35);
    box-shadow: 0 0 16px var(--marker-color), 0 0 30px rgba(0, 0, 0, 0.4);
}

.globe-marker.active {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 20px var(--marker-color), 0 0 40px var(--marker-color);
}

/* Marker label tooltip */
.globe-marker-label {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(0, 0, 0, 0.88);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.globe-marker:hover .globe-marker-label,
.globe-marker.active .globe-marker-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.globe-marker-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.88);
}

@keyframes markerPulse {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Globe Zoom Controls */
.globe-zoom-controls {
    position: absolute;
    right: -52px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
}

.globe-zoom-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(0, 151, 54, 0.5);
    background: rgba(255, 255, 255, 0.95);
    color: #009736;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0;
    line-height: 1;
}

.globe-zoom-btn:hover {
    background: #009736;
    color: #fff;
    border-color: #009736;
    box-shadow: 0 4px 12px rgba(0, 151, 54, 0.3);
}

.globe-zoom-btn:active {
    transform: scale(0.92);
}

.country-panel {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.country-panel.country-panel-show {
    opacity: 1;
    transform: translateY(0);
}

.country-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.country-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4 / 3;
}

.country-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.country-gallery-item:hover img {
    transform: scale(1.06);
}

.country-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.country-gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.12);
}

.country-gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1.5rem;
    background: #F7F9FC;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

/* Globe Lightbox */
.globe-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.globe-lightbox.show {
    opacity: 1;
}

.globe-lightbox-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    animation: qrZoomIn 0.25s ease forwards;
}

.globe-lightbox-content img {
    width: 100%;
    border-radius: 12px;
    max-height: 70vh;
    object-fit: contain;
}

.globe-lightbox-label {
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: #1A1A1A;
    margin-bottom: 0;
}

.globe-lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #F0F2F5;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
}

.globe-lightbox-close:hover {
    background: #dee2e6;
    color: #333;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-slideshow,
    .hero-slides {
        min-height: 75vh;
    }

    .hero-slide-content {
        padding: 2rem 1rem 2rem;
    }

    .hero-slide-content h1,
    .hero-slide-content h2 {
        font-size: 1.8rem;
    }

    .hero-slide-content .lead {
        font-size: 1rem;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .hero-arrow-left {
        left: 0.75rem;
    }

    .hero-arrow-right {
        right: 0.75rem;
    }

    .hero-dots {
        bottom: 0.4rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.8rem;
    }

    .sidebar {
        min-height: auto !important;
        border-right: none !important;
        border-bottom: 1px solid #E8EDF2;
    }

    .dropzone-area {
        padding: 1.5rem 1rem;
    }

    .dropzone-icon {
        font-size: 2rem;
    }

    .upload-item-thumb {
        width: 40px;
        height: 40px;
    }

    .gallery-admin-img {
        height: 140px;
    }

    #globe-wrapper {
        max-width: 320px;
    }

    .globe-marker {
        width: 12px;
        height: 12px;
    }

    .globe-marker-big {
        width: 16px;
        height: 16px;
    }

    .globe-marker-label {
        font-size: 0.75rem;
    }

    .globe-zoom-controls {
        right: -44px;
    }

    .globe-zoom-btn {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .country-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* --- Proof / Trust-Bridge Section (Transparenz) --- */
.proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.proof-stat {
    text-align: center;
}

.proof-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #009736;
    line-height: 1;
    display: block;
}

.proof-stat-label {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 0.25rem;
    display: block;
}

.proof-card {
    border: none;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.proof-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 151, 54, 0.15);
    border-color: #009736;
    color: inherit;
}

.proof-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    margin-bottom: 1rem;
}

.proof-card .card-icon i {
    font-size: 1.6rem;
    color: #009736;
}

.proof-card .proof-link {
    color: #009736;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.proof-card:hover .proof-link {
    gap: 0.6rem;
}

.proof-quote {
    font-style: italic;
    text-align: center;
    color: #6c757d;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem 0;
    position: relative;
}

.proof-quote::before {
    content: '\201E';
    font-size: 3rem;
    color: #009736;
    opacity: 0.3;
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    font-style: normal;
}

@media (max-width: 767.98px) {
    .proof-stats {
        gap: 1.5rem;
    }

    .proof-stat-number {
        font-size: 2.2rem;
    }

    .proof-quote {
        font-size: 1rem;
        padding: 1rem 0.5rem;
    }

    .proof-quote::before {
        display: none;
    }
}

/* --- Destination Slideshow (Raffle Cards) --- */
.dest-slideshow {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.dest-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.dest-slide.active {
    opacity: 1;
}

.dest-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.15) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    z-index: 2;
}

.dest-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.dest-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dest-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.dest-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* --- Gallery Page: Masonry Grid --- */
.gp-masonry {
    columns: 4;
    column-gap: 16px;
}

.gp-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f0f0f0;
}

.gp-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gp-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.85);
}

.gp-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.gp-item:hover .gp-item-overlay {
    opacity: 1;
}

.gp-item-number {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.gp-item-caption {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.gp-item-zoom {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

@media (max-width: 1200px) {
    .gp-masonry { columns: 3; }
}
@media (max-width: 768px) {
    .gp-masonry { columns: 2; column-gap: 10px; }
    .gp-item { margin-bottom: 10px; border-radius: 8px; }
}
@media (max-width: 480px) {
    .gp-masonry { columns: 1; }
}

/* --- Gallery Page: Lightbox --- */
.gp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gp-lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.gp-lb-toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    z-index: 10;
}

.gp-lb-counter {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0,0,0,0.4);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.gp-lb-close {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}

.gp-lb-close:hover {
    background: rgba(255,255,255,0.25);
}

.gp-lb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.gp-lb-img {
    max-height: 82vh;
    max-width: 88vw;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.gp-lb-caption {
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 80%;
    text-align: center;
    backdrop-filter: blur(4px);
}

.gp-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.gp-lb-nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}

.gp-lb-prev { left: 1.5rem; }
.gp-lb-next { right: 1.5rem; }

@media (max-width: 768px) {
    .gp-lb-nav { width: 40px; height: 40px; font-size: 1.1rem; }
    .gp-lb-prev { left: 0.75rem; }
    .gp-lb-next { right: 0.75rem; }
    .gp-lb-close { width: 38px; height: 38px; }
    .gp-lb-toolbar { padding: 0.8rem 1rem; }
    .gp-lb-img { max-width: 95vw; max-height: 80vh; border-radius: 4px; }
    .gp-lb-caption { font-size: 0.8rem; padding: 0.4rem 1rem; }
}

/* --- Contact Page: Recommended Badge --- */
.badge-recommended {
    background: rgba(0, 151, 54, 0.15);
    color: #009736;
    font-size: 0.7rem;
    font-weight: 600;
}

/* --- Community Page --- */
.community-masonry {
    columns: 3 320px;
    column-gap: 1.25rem;
}

.community-card {
    break-inside: avoid;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.community-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.community-quote {
    font-style: italic;
    color: #2D3748;
    line-height: 1.65;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.community-author {
    font-size: 0.85rem;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
}

.community-date {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .community-masonry {
        columns: 1;
    }
}

/* --- Donation Progress Bars --- */
.donation-progress-track {
    width: 100%;
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.donation-progress-fill {
    height: 100%;
    width: 0;
    border-radius: 6px;
    transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.donation-bar-item {
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.donation-bar-item.donation-bar-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MOBILE OPTIMIZATION
   ============================================ */

/* --- Touch-friendly: minimum 44px tap targets --- */
@media (pointer: coarse) {
    .btn, button, a.nav-link, .dropdown-item,
    .coin-select-card, .receipt-option-card {
        min-height: 44px;
    }
    .hero-dot {
        width: 14px;
        height: 14px;
    }
    .hero-dot.active {
        width: 32px;
    }
}

/* --- Tablets (max 991px) --- */
@media (max-width: 991.98px) {
    /* Navbar brand truncation for long name */
    .navbar-glass .navbar-brand {
        font-size: 0.85rem;
        max-width: 260px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Section spacing */
    section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .section-subtext {
        font-size: 0.95rem;
    }
}

/* --- Mobile (max 767px) --- */
@media (max-width: 767.98px) {
    /* Navbar brand */
    .navbar-glass .navbar-brand {
        font-size: 0.78rem;
        max-width: 200px;
    }

    /* Hero adjustments */
    .hero-slideshow, .hero-slides {
        min-height: 65vh;
    }

    .hero-slide.active {
        min-height: 65vh;
    }

    .hero-slide-content {
        padding: 1.5rem 1rem;
    }

    .hero-slide-content h1,
    .hero-slide-content h2 {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .hero-slide-content .lead {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .btn-cta {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }

    /* Trust badges wrap nicely */
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.65rem;
        gap: 0.35rem;
    }

    /* Section typography */
    .section-heading {
        font-size: 1.4rem;
    }

    .section-subtext {
        font-size: 0.9rem;
    }

    section.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Donation cards */
    .donation-card {
        margin-bottom: 1rem;
    }

    .donation-icon {
        width: 56px;
        height: 56px;
    }

    /* Crypto wizard modal */
    .crypto-steps-bar {
        padding: 0.8rem 1rem;
        gap: 0;
    }

    .crypto-step-line {
        width: 24px;
        margin: 0 0.35rem;
    }

    .crypto-step-num {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    /* Coin cards: 2 per row on small mobile */
    .coin-select-card {
        padding: 0.8rem 0.5rem;
    }

    .coin-select-icon {
        font-size: 1.4rem;
    }

    /* Wallet display mobile */
    .wallet-card {
        padding: 0.75rem;
    }

    .wallet-card .row {
        flex-direction: column;
        text-align: center;
    }

    .wallet-qr {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .wallet-address {
        max-width: 100%;
        font-size: 0.65rem;
        display: block;
        margin: 0.5rem 0;
    }

    .btn-copy-wallet {
        margin-left: 0 !important;
    }

    /* QR Zoom */
    .qr-zoom-content {
        padding: 1.25rem;
        max-width: 320px;
    }

    .qr-zoom-content img {
        width: 220px;
        height: 220px;
    }

    /* Footer mobile */
    .footer-custom .row > div {
        margin-bottom: 1.5rem;
    }

    .footer-custom h6 {
        font-size: 0.8rem;
    }

    .footer-divider .d-flex {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Progress stats */
    .stat-number {
        font-size: 1.3rem;
    }

    .progress {
        height: 16px;
    }

    /* Contact cards */
    .contact-card {
        padding: 1.25rem;
    }

    /* FAQ accordion */
    .accordion-button {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    /* Receipt option cards */
    .receipt-option-card {
        padding: 0.8rem;
    }

    .receipt-option-card i {
        font-size: 1.5rem !important;
    }

    /* Tables scroll horizontally */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }

    /* Ticker mobile */
    .ticker-item {
        font-size: 0.8rem;
        padding: 0 1.2rem;
    }

    .ticker-sep {
        font-size: 0.65rem;
    }

    /* Cookie banner */
    .cookie-consent {
        padding: 0.75rem 1rem;
    }

    /* Back to top button */
    #backToTop {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* --- Small mobile (max 480px) --- */
@media (max-width: 480px) {
    .navbar-glass .navbar-brand {
        font-size: 0.7rem;
        max-width: 160px;
    }

    .hero-slideshow, .hero-slides {
        min-height: 55vh;
    }

    .hero-slide.active {
        min-height: 55vh;
    }

    .hero-slide-content h1,
    .hero-slide-content h2 {
        font-size: 1.25rem;
    }

    .hero-slide-content .lead {
        font-size: 0.82rem;
    }

    .hero-slide-content .slide-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.8rem;
    }

    .btn-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .section-heading {
        font-size: 1.2rem;
    }

    .section-subtext {
        font-size: 0.85rem;
    }

    /* Trust badges stack vertically */
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    /* Ticker small mobile */
    .ticker-item {
        font-size: 0.75rem;
        padding: 0 1rem;
    }

    /* Crypto wizard */
    .crypto-step-label {
        display: none !important;
    }

    .crypto-step-line {
        width: 20px;
        margin: 0 0.25rem;
    }

    /* Stat numbers */
    .stat-number {
        font-size: 1.1rem;
    }

    .proof-stat-number {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer-divider small {
        font-size: 0.7rem;
    }
}

/* --- Landscape mobile --- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slideshow, .hero-slides {
        min-height: 80vh;
    }
    .hero-slide.active {
        min-height: 80vh;
    }
    .hero-slide-content {
        padding: 1rem;
    }
    .hero-slide-content h1,
    .hero-slide-content h2 {
        font-size: 1.3rem;
    }
}

/* --- Safe area for notched phones (iPhone X+) --- */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer-custom {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    .navbar-glass {
        padding-top: calc(0.5rem + env(safe-area-inset-top));
    }
    .cookie-consent {
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    }
    #backToTop {
        bottom: calc(1.5rem + env(safe-area-inset-bottom));
        right: calc(1.5rem + env(safe-area-inset-right));
    }
}

/* --- Smooth scrolling --- */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* --- Print styles --- */
@media print {
    .navbar-glass, .ticker-wrapper, .hero-arrow,
    .hero-dots, .hero-timer, #backToTop,
    .cookie-consent, .qr-zoom-overlay {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
    .hero-slideshow {
        min-height: auto;
    }
}
