/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e4e6ea;
    background: linear-gradient(180deg, #0a0a12 0%, #111122 50%, #1a1a2e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    font-variant-numeric: tabular-nums;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: rgba(15, 18, 32, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(15, 18, 32, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.2rem 0;
    transition: padding 0.3s ease;
}

/* Header Scroll Effects */
.main-header.scrolled {
    background: rgba(15, 18, 32, 0.9);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(15, 18, 32, 0.6);
    border-bottom: 1px solid rgba(96, 165, 250, 0.4);
}

/* Glassy Header State */
.main-header.glassy {
    background: rgba(15, 18, 32, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(15, 18, 32, 0.2);
    border-bottom: 1px solid rgba(96, 165, 250, 0.15);
}

.main-header.scrolled .navbar {
    padding: 0.8rem 0;
}

.main-header.scrolled .logo {
    height: 38px;
}

.main-header.scrolled .brand-name {
    font-size: 1.4rem;
}

/* Header Hover Effects */
.main-header.glassy:hover {
    background: rgba(15, 18, 32, 0.25);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.25);
}

.main-header.scrolled:hover {
    background: rgba(15, 18, 32, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.logo {
    height: 45px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(96, 165, 250, 0.3));
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.025em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}


.nav-logo:hover .logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(96, 165, 250, 0.4));
}

.nav-logo:hover .brand-name {
    color: #e0f2fe;
    text-shadow: 0 2px 8px rgba(96, 165, 250, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e4e4e7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(96, 165, 250, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #e4e4e7;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    color: #fff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.7) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.6) 0%, rgba(17, 17, 34, 0.5) 30%, rgba(26, 31, 53, 0.4) 70%, rgba(37, 43, 71, 0.3) 100%);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #60a5fa;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #a1a1aa;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #60a5fa;
    color: #0f0f23;
}

.btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #e4e4e7;
    border: 2px solid #60a5fa;
}

.btn-secondary:hover {
    background: #60a5fa;
    color: #0f0f23;
}

.btn-outline {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
}

.btn-outline:hover {
    background: #60a5fa;
    color: #0f0f23;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Projekt Intro Section */
.project-intro {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1f35 0%, #1e2340 50%, #22274a 100%);
    position: relative;
    z-index: 2;
}

.project-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f4f4f5;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: linear-gradient(145deg, #1e2340 0%, #252b47 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid rgba(96, 165, 250, 0.15);
    backdrop-filter: blur(5px);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
}

.card-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f4f4f5;
}

.project-card p {
    color: #a1a1aa;
    line-height: 1.8;
}

/* Was wir machen Section */
.what-we-do {
    padding: 80px 0;
    background: linear-gradient(180deg, #22274a 0%, #1e2340 50%, #1a1f35 100%);
    position: relative;
    z-index: 2;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.activities-grid {
    display: grid;
    gap: 3rem;
}

.activity-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(145deg, #1a1f35 0%, #1e2340 100%);
    border: 1px solid rgba(96, 165, 250, 0.12);
    backdrop-filter: blur(5px);
}

.activity-item:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.activity-item:nth-child(even) .activity-image {
    order: 2;
}

.activity-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.activity-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f4f4f5;
}

.activity-content p {
    color: #a1a1aa;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #1a1f35 0%, #252b47 50%, #2a2f52 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #a1a1aa;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #2a2f52 0%, #1e2340 50%, #0f1220 100%);
    color: #e4e6ea;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(96, 165, 250, 0.15);
    position: relative;
    z-index: 3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #60a5fa;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3f3f46;
    opacity: 0.8;
    color: #71717a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(180deg, #1a1f35 0%, #252b47 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.4);
        padding: 2rem 0;
        border-top: 1px solid rgba(96, 165, 250, 0.15);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Mobile Video Optimization */
    .hero-video-bg video {
        /* Reduziere Qualität auf mobilen Geräten für bessere Performance */
        filter: brightness(0.6) contrast(1.2);
    }

    .video-overlay {
        /* Stärkerer Overlay auf mobilen Geräten für bessere Lesbarkeit */
        background: linear-gradient(135deg, rgba(10, 10, 18, 0.8) 0%, rgba(17, 17, 34, 0.7) 30%, rgba(26, 31, 53, 0.6) 70%, rgba(37, 43, 71, 0.5) 100%);
    }
}

    .activity-item,
    .activity-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .activity-item:nth-child(even) .activity-image {
        order: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(96, 165, 250, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.scale-in.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Enhanced Card Animations */
.project-card {
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    will-change: transform;
}

.project-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow:
        0 20px 40px rgba(96, 165, 250, 0.15),
        0 0 0 1px rgba(96, 165, 250, 0.2);
}

.project-card .card-icon {
    transition: transform 0.4s ease;
}

.project-card:hover .card-icon {
    transform: scale(1.1) rotateY(10deg);
}

/* Activity Item Animations */
.activity-item {
    transition: all 0.4s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.1);
}

.activity-image {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.activity-item:hover .activity-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Navigation Animations */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Enhanced Logo Animations */
@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 2px 8px rgba(96, 165, 250, 0.2));
    }

    50% {
        filter: drop-shadow(0 4px 16px rgba(96, 165, 250, 0.4));
    }
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(96, 165, 250, 0.4));
}

/* Brand Name Animation */
@keyframes brandShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.brand-name.shine {
    background: linear-gradient(90deg,
            #ffffff 0%,
            #60a5fa 25%,
            #ffffff 50%,
            #60a5fa 75%,
            #ffffff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandShine 3s linear infinite;
}

/* Hero Animations */
.hero-title {
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-image {
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards;
}

.hero-image img {
    /* Animation entfernt - Bild soll statisch bleiben */
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered Animation for Cards */
.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Section Title Animation */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.6s ease;
}

.section-title.visible::after {
    transform: translateX(-50%) scaleX(1);
}

/* Footer Animation */
.footer-section {
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.bar {
    transition: all 0.3s ease;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Parallax Effect */
.hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth Transitions */
* {
    scroll-behavior: smooth;
}

/* Performance Optimizations */
.project-card,
.activity-item,
.btn,
.nav-link {
    will-change: transform;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    border-top-color: #60a5fa;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Text Glow Effect */
.glow-text {
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
    }
}

/* Card Flip Animation */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Bounce Animation */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Slide In Animations */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 2px solid #60a5fa;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #60a5fa;
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-image img {
        animation: none !important;
        transform: none !important;
    }

    .ripple {
        animation: none !important;
    }
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #18181b;
}

::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #60a5fa;
}

/* Hostly Cloud Services Hero Banner */
.hostly-hero-banner {
    background: linear-gradient(135deg, #0a0a12 0%, #111122 25%, #1a1f35 50%, #1e2340 75%, #22274a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hostly-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(96, 165, 250, 0.06) 0%, transparent 50%);
    animation: backgroundPulse 6s ease-in-out infinite;
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.hostly-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Background Animations */
.hostly-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.server-icon {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-icon {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.shield-icon {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.rocket-icon {
    top: 60%;
    right: 25%;
    animation-delay: 3s;
}

.globe-icon {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(96, 165, 250, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(96, 165, 250, 0.6) 1px, transparent 1px),
        radial-gradient(circle, rgba(96, 165, 250, 0.3) 1px, transparent 1px);
    background-size: 100px 100px, 80px 80px, 120px 120px;
    background-position: 0 0, 40px 40px, 80px 20px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200px);
    }
}

/* Main Content */
.hostly-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Logo Section */
.hostly-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hostly-logo-container {
    position: relative;
}

.hostly-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
}

.hostly-logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.hostly-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.cloud-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.8));
    }
}

.partnership-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    }
}

/* Main Content Section */
.hostly-main-content {
    text-align: center;
    padding: 0 2rem;
}

.hostly-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: 1.5rem;
    color: #cbd5e1;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Animated Features Carousel */
.animated-features {
    margin: 2rem 0;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.feature-carousel {
    position: relative;
    height: 100%;
}

.feature-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.feature-item.active {
    opacity: 1;
    transform: translateX(0);
}

.feature-item.prev {
    opacity: 0;
    transform: translateX(-100px);
}

.feature-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.6));
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-text h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-text p {
    color: #94a3b8;
    font-size: 1rem;
}

/* Stats Section */
.hostly-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Buttons */
.hostly-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hostly-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hostly-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hostly-btn:hover::before {
    left: 100%;
}

.hostly-btn.primary {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.hostly-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.6);
}

.hostly-btn.secondary {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.2);
}

.hostly-btn.secondary:hover {
    background: rgba(96, 165, 250, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.hostly-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Testimonial Section */
.hostly-testimonial {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    max-width: 300px;
}

.testimonial-content {
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    color: white;
    font-weight: 700;
}

.author-role {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Hostly Hero Mobile Responsive */
@media (max-width: 1200px) {
    .hostly-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hostly-testimonial {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hostly-hero-banner {
        padding: 3rem 0;
    }

    .hostly-container {
        padding: 0 1rem;
    }

    .hostly-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .title-highlight {
        font-size: 2rem;
    }

    .hostly-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hostly-cta {
        flex-direction: column;
        align-items: center;
    }

    .hostly-btn {
        width: 200px;
        justify-content: center;
    }

    .floating-icon {
        font-size: 1.5rem;
    }

    .animated-features {
        height: 100px;
    }

    .feature-text h3 {
        font-size: 1.2rem;
    }

    .feature-text p {
        font-size: 0.9rem;
    }
}

/* Charity Page Styles */
.charity-main {
    padding: 120px 0 80px;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* Charity Video Background */
.charity-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.charity-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.6) contrast(1.1);
}

.charity-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.7) 0%, rgba(17, 17, 34, 0.6) 30%, rgba(26, 31, 53, 0.5) 70%, rgba(37, 43, 71, 0.4) 100%);
    z-index: 1;
}

.charity-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Footer auf Charity-Seite */
.charity-main + .main-footer {
    position: relative;
    z-index: 4;
}

/* Archive Video Background */
.archive-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.archive-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.6) contrast(1.1);
}

.archive-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.7) 0%, rgba(17, 17, 34, 0.6) 30%, rgba(26, 31, 53, 0.5) 70%, rgba(37, 43, 71, 0.4) 100%);
    z-index: 1;
}

/* Archive Content Z-Index */
.hero,
.archive-hero,
.archive-content,
.archive-main {
    position: relative;
    z-index: 2;
}

/* Footer auf Archiv-Seite */
.archive-main + .main-footer,
body > .main-footer {
    position: relative;
    z-index: 4;
}

/* Hauptspenden-Übersicht */
.donation-overview-main {
    margin-bottom: 4rem;
}

.donation-hero-card {
    background: linear-gradient(145deg, #1e2340 0%, #252b47 100%);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(96, 165, 250, 0.3);
    backdrop-filter: blur(15px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.donation-hero-card h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.donation-stats-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.stat-large {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #60a5fa;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-large {
    font-size: 1.2rem;
    color: #e4e4e7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.3), transparent);
}

.progress-container-large {
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.progress-bar-large {
    width: 100%;
    height: 30px;
    background: linear-gradient(90deg, #1a1f35, #252b47);
    border-radius: 35px;
    overflow: hidden;
    border: 3px solid rgba(96, 165, 250, 0.3);
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.4);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #2563eb);
    border-radius: 30px;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 3s infinite;
}

.donation-actions-main {
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.donate-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donate-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.donate-btn-large:hover::before {
    left: 100%;
}

.donate-btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-icon {
    font-size: 1.8rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.donation-summary {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #a1a1aa;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Zusätzliche Informationen - Sekundär */
.donation-details {
    margin-top: 2rem;
}

.donation-info-compact {
    background: linear-gradient(145deg, #1a1f35 0%, #1e2340 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.15);
    backdrop-filter: blur(10px);
    text-align: center;
}

.donation-info-compact h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #60a5fa;
}

.donation-info-compact p {
    color: #a1a1aa;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(96, 165, 250, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-item span:last-child {
    color: #e4e4e7;
    font-weight: 500;
    font-size: 1rem;
}

.donation-card {
    background: linear-gradient(145deg, #1e2340 0%, #252b47 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(96, 165, 250, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(96, 165, 250, 0.15);
}

.donation-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #60a5fa;
    text-align: center;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

.donation-stats {
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item.total {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    margin-top: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #e4e4e7;
    font-weight: 500;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: #60a5fa;
    text-shadow: 0 2px 8px rgba(96, 165, 250, 0.4);
}

.stat-item.total .stat-value {
    font-size: 1.5rem;
    color: #ffffff;
}

.progress-container {
    margin: 2rem 0;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, #1a1f35, #252b47);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(96, 165, 250, 0.2);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #2563eb);
    border-radius: 20px;
    transition: width 1s ease-in-out;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.progress-percentage {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #60a5fa;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.4);
}

.donation-actions {
    text-align: center;
    margin-top: 2rem;
}

.donate-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.6);
}

.donation-info {
    background: linear-gradient(145deg, #1a1f35 0%, #1e2340 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(96, 165, 250, 0.15);
    backdrop-filter: blur(10px);
}

.donation-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #60a5fa;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

.donation-info h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #e4e4e7;
}

.donation-info p {
    color: #a1a1aa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.donation-info ul {
    list-style: none;
    padding: 0;
}

.donation-info li {
    color: #a1a1aa;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.donation-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile Responsive für Charity Page */
@media (max-width: 768px) {
    .donation-hero-card {
        padding: 2.5rem;
    }
    
    .donation-hero-card h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .donation-stats-large {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label-large {
        font-size: 1rem;
    }
    
    .donate-btn-large {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
    }
    
    .donation-info-compact {
        padding: 2rem;
    }
    
    .donation-info-compact h3 {
        font-size: 1.5rem;
    }
    
    .info-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .charity-main {
        padding: 100px 0 60px;
    }
    
    .charity-main h1 {
        font-size: 1.8rem;
    }
    
    .donation-card,
    .donation-info {
        padding: 1.5rem;
    }
    
    .donation-card h2 {
        font-size: 1.3rem;
    }
    
    .stat-item.total {
        padding: 1rem;
    }
}