/* ===============================================
   🌟 EXPERIENCE JOURNEY - EPIC CHARACTER SYSTEM
   =============================================== */

/* ===== EXPERIENCE FOUNDATION ===== */
.experience {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(180deg, 
        var(--bg-primary) 0%, 
        rgba(0, 122, 255, 0.01) 20%,
        rgba(142, 68, 173, 0.01) 40%,
        rgba(255, 159, 10, 0.01) 60%,
        rgba(46, 160, 67, 0.01) 80%,
        var(--bg-primary) 100%
    );
    overflow: hidden;
}

.dark-mode .experience {
    background: linear-gradient(180deg, 
        var(--bg-primary) 0%, 
        rgba(0, 122, 255, 0.02) 20%,
        rgba(142, 68, 173, 0.02) 40%,
        rgba(255, 159, 10, 0.02) 60%,
        rgba(46, 160, 67, 0.02) 80%,
        var(--bg-primary) 100%
    );
}

/* ===== CINEMATIC BACKGROUND ===== */
.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.story-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: storyFloat 30s ease-in-out infinite;
}

.story-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.12) 0%, transparent 70%);
    top: 15%;
    right: -300px;
    animation-delay: 0s;
}

.story-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.1) 0%, transparent 70%);
    bottom: 25%;
    left: -250px;
    animation-delay: -10s;
}

.story-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 159, 10, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -20s;
}

.journey-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 122, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(142, 68, 173, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 159, 10, 0.02) 0%, transparent 50%);
    animation: journeyMove 40s linear infinite;
}

/* ===== EXPERIENCE HEADER ===== */
.experience-header {
    text-align: center;
    margin-bottom: 6rem;
    animation: fadeInUp 1s ease-out;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.12) 0%,
        rgba(255, 215, 0, 0.06) 50%,
        rgba(255, 149, 0, 0.08) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 0 40px rgba(255, 215, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.journey-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.15), 
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-badge:hover::before {
    opacity: 1;
    animation: journeyShine 1s ease-in-out;
}

.badge-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        #ffd700 0%, 
        #ffed4e 50%,
        #ff9500 100%
    );
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 
        0 8px 16px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.crown-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    opacity: 0.6;
}

.journey-badge span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.journey-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 20px;
}

.journey-dot {
    width: 8px;
    height: 8px;
    background: #007AFF;
    border-radius: 50%;
    opacity: 0.8;
}

.journey-indicator span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #007AFF;
}

/* ===== EXPERIENCE TITLE ===== */
.experience-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-main {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, 
        #ffd700 0%, 
        #ffed4e 25%, 
        #007AFF 50%, 
        #5856D6 75%, 
        #ffd700 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffd700 25%, 
        #007AFF 50%, 
        #5856D6 75%, 
        transparent 100%
    );
    border-radius: 2px;
}

.title-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== JOURNEY STATS ===== */
.journey-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: nowrap;
}

.journey-stat {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.journey-stat::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 50%, 
        transparent 100%
    );
}

.journey-stat:last-child::after {
    display: none;
}

.journey-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, 
        #007AFF 0%, 
        #5856D6 25%,
        #AF52DE 50%,
        #FF9F0A 75%,
        #FF3B30 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.3));
}

.journey-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Für sehr große Bildschirme - falls mehr Platz benötigt wird */
@media (min-width: 1400px) {
    .journey-stats {
        flex-wrap: wrap;
    }
}

/* ===== CHARACTER PROFILES ===== */
.character-profiles {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin: 8rem auto;
    max-width: 1600px;
    padding: 0 3rem;
    position: relative;
    box-sizing: border-box;
}

.character-profiles::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -4rem;
    bottom: -4rem;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 122, 255, 0.2) 5%,
        rgba(0, 122, 255, 0.6) 20%,
        rgba(88, 86, 214, 0.8) 35%,
        rgba(175, 82, 222, 1) 50%,
        rgba(88, 86, 214, 0.8) 65%,
        rgba(0, 122, 255, 0.6) 80%,
        rgba(0, 122, 255, 0.2) 95%,
        transparent 100%
    );
    transform: translateX(-50%);
    z-index: 0;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    animation: timelineGlow 4s ease-in-out infinite;
}

@keyframes timelineGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 40px rgba(175, 82, 222, 0.5);
        opacity: 0.8;
    }
}

.character-profile {
    background: 
        radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
            rgba(0, 122, 255, 0.03) 0%, 
            transparent 50%
        ),
        radial-gradient(circle at top left, rgba(0, 122, 255, 0.015) 0%, transparent 60%),
        radial-gradient(circle at bottom right, rgba(175, 82, 222, 0.015) 0%, transparent 60%),
        linear-gradient(145deg, 
            rgba(8, 8, 12, 0.98) 0%,
            rgba(12, 12, 18, 0.98) 50%,
            rgba(8, 8, 12, 0.98) 100%
        );
    backdrop-filter: blur(40px) saturate(180%) brightness(1.05);
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 
        0 20px 40px -8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 380px;
    z-index: 1;
}

.character-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 122, 255, 0.3) 20%,
        rgba(175, 82, 222, 0.6) 50%,
        rgba(0, 122, 255, 0.3) 80%,
        transparent 100%
    );
    z-index: 2;
}

.character-profile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
            rgba(255, 255, 255, 0.02) 0%, 
            transparent 40%
        );
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 40px;
    pointer-events: none;
}

.character-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.03) 0%, 
        rgba(88, 86, 214, 0.02) 25%,
        rgba(175, 82, 222, 0.03) 50%,
        rgba(255, 149, 0, 0.02) 75%,
        rgba(255, 59, 48, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 32px;
}

.character-profile:hover {
    /* Sanfte Bewegung nach oben */
    transform: translateY(-4px) !important;
    /* Eleganter Shadow ohne zu viel Glow */
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    /* Subtiler Border */
    border-color: rgba(0, 122, 255, 0.2);
    /* Sanfter Filter-Effekt */
    backdrop-filter: blur(30px) saturate(150%);
}

.character-profile:hover::after {
    opacity: 0.3; /* Reduzierter Overlay-Effekt */
}

.character-profile:hover::before {
    opacity: 0.2; /* Subtiler Background-Gradient */
}

/* Stat Circle Hover vereinfachen */
.character-profile:hover .stat-circle {
    /* Minimale Bewegung */
    transform: translateY(-1px) scale(1.02) !important;
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 12px rgba(0, 122, 255, 0.1);
}

.character-profile:hover .stat-circle::before {
    opacity: 0.5; /* Sanfter Gradient-Effekt */
}

/* Character Badge Hover stark reduzieren */
.character-badge:hover {
    /* Minimal lift */
    transform: translateY(-1px) scale(1.01) !important;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 0 8px rgba(255, 215, 0, 0.1);
}

.character-badge:hover::before {
    opacity: 0.4; /* Subtiler Shine-Effekt */
}

/* Character Glow fast komplett entfernen */
.character-profile:hover .character-glow {
    opacity: 0.05; /* Kaum sichtbarer Glow */
}

/* Mobile Hover-Effekte noch mehr reduzieren */
@media (max-width: 768px) {
    .character-profile:hover {
        transform: translateY(-2px) !important; /* Weniger Bewegung auf Mobile */
    }
    
    .character-profile:hover .stat-circle {
        transform: scale(1.01) !important; /* Nur minimal auf Mobile */
    }
    
    .character-badge:hover {
        transform: scale(1.005) !important; /* Kaum merkbar auf Mobile */
    }
}

@media (max-width: 480px) {
    .character-profile:hover {
        transform: translateY(-1px) !important;
    }
    
    .character-profile:hover .stat-circle {
        transform: none !important; /* Kein Effekt auf kleinen Screens */
    }
    
    .character-badge:hover {
        transform: none !important;
    }
}

@media (max-width: 375px) {
    .character-profile:hover {
        transform: none !important; /* Keine Hover-Effekte auf sehr kleinen Screens */
    }
}

.character-profile.featured {
    /* Gleicher Style wie normale Karten - kein Unterschied mehr */
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dark-mode .character-profile {
    background: rgba(0, 0, 0, 0.3);
}

/* ===== CHARACTER VISUAL ===== */
.character-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem;
    background: 
        radial-gradient(circle at center, 
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 40%,
            transparent 100%
        ),
        linear-gradient(145deg, 
            rgba(255, 255, 255, 0.08) 0%, 
            rgba(255, 255, 255, 0.02) 50%,
            rgba(0, 122, 255, 0.04) 100%
        );
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: fit-content;
    align-self: center;
    transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.character-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.03) 0%, 
        transparent 60%
    );
    animation: visualGlow 8s ease-in-out infinite;
    pointer-events: none;
}

.character-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.02em;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.character-badge:hover {
    transform: none !important; /* Keine Bewegung mehr */
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15); /* Nur minimaler Shadow */
}

.character-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.character-badge:hover::before {
    opacity: 0; /* Kein Shine-Effekt mehr */
    animation: none; /* Keine Animation */
}

.character-badge i {
    font-size: 0.875rem;
}

.character-badge span {
    position: relative;
    z-index: 2;
}

.character-badge.champion {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.character-badge.founder {
    background: rgba(0, 122, 255, 0.2);
    color: #007AFF;
    border: 1px solid rgba(0, 122, 255, 0.4);
}

.character-badge.student {
    background: rgba(46, 160, 67, 0.2);
    color: #2ea043;
    border: 1px solid rgba(46, 160, 67, 0.4);
}

.character-badge.developer {
    background: rgba(88, 86, 214, 0.2);
    color: #5856D6;
    border: 1px solid rgba(88, 86, 214, 0.4);
}

.character-badge.visionary {
    background: rgba(175, 82, 222, 0.2);
    color: #AF52DE;
    border: 1px solid rgba(175, 82, 222, 0.4);
}

.character-badge.builder {
    background: rgba(255, 149, 0, 0.2);
    color: #FF9500;
    border: 1px solid rgba(255, 149, 0, 0.4);
}

.character-badge.pioneer {
    background: rgba(255, 45, 146, 0.2);
    color: #ff2d92;
    border: 1px solid rgba(255, 45, 146, 0.4);
}

.character-badge.child {
    background: rgba(100, 210, 255, 0.2);
    color: #64d2ff;
    border: 1px solid rgba(100, 210, 255, 0.4);
}

/* ===== CHARACTER STATS ===== */
.character-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.stat-circle {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: 
        radial-gradient(circle at center, 
            rgba(255, 255, 255, 0.08) 0%, 
            rgba(255, 255, 255, 0.02) 80%,
            transparent 100%
        ),
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(0, 122, 255, 0.03) 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.1) 0%, 
        transparent 50%,
        rgba(175, 82, 222, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.character-profile:hover .stat-circle {
    border-color: rgba(255, 255, 255, 0.15);
    transform: none !important;
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.character-profile:hover .stat-circle::before {
    opacity: 0;
}

.stat-circle .stat-value {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: relative;
}

.stat-circle .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: none;
    letter-spacing: -0.01em;
    margin-top: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

/* ===== CHARACTER GLOW ===== */
.character-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ffd700, 
        #007AFF, 
        #5856D6, 
        #ffd700
    );
    background-size: 300% 300%;
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

.character-profile:hover .character-glow {
    opacity: 0;
}

/* ===== CHARACTER CONTENT ===== */
.character-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-self: center;
}

.character-header h3 {
    font-size: clamp(3rem, 5vw, 4rem);
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 2rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.05em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(0, 122, 255, 0.9) 60%,
        rgba(175, 82, 222, 0.85) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.character-header h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(0, 122, 255, 0.6) 0%,
        rgba(175, 82, 222, 0.4) 100%
    );
    border-radius: 2px;
    opacity: 0.7;
}

.character-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.character-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.character-location i {
    color: var(--accent-primary);
}

/* ===== CHARACTER QUOTE ===== */
.character-quote {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin: 0.5rem 0;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.character-quote::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    line-height: 1;
    font-weight: 300;
}

.character-quote blockquote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-weight: 400;
    margin-left: 2rem;
}

.character-quote cite {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-weight: 500;
    margin-left: 2rem;
}

/* ===== CHARACTER STORY ===== */
.character-story p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-weight: 400;
}

/* ===== HIGHLIGHT CLASSES ===== */
.highlight-fitness { background: linear-gradient(135deg, #ff6b6b, #ee5a52); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-friendship { background: linear-gradient(135deg, #4ecdc4, #26d0ce); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-business { background: linear-gradient(135deg, #007AFF, #5856D6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-education { background: linear-gradient(135deg, #2ea043, #00d084); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-legal { background: linear-gradient(135deg, #ffd700, #ffed4e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-quality { background: linear-gradient(135deg, #FF9500, #FFCC02); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-innovation { background: linear-gradient(135deg, #5856D6, #AF52DE); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-decision { background: linear-gradient(135deg, #007AFF, #5856D6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-improvement { background: linear-gradient(135deg, #2ea043, #00d084); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-family { background: linear-gradient(135deg, #ff2d92, #ff375f); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-experience { background: linear-gradient(135deg, #FF9500, #FFCC02); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-start { background: linear-gradient(135deg, #32d74b, #30db5b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-ai { background: linear-gradient(135deg, #5856D6, #AF52DE); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-tech { background: linear-gradient(135deg, #007AFF, #5856D6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-name { background: linear-gradient(135deg, #FF9500, #FFCC02); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-first { background: linear-gradient(135deg, #2ea043, #00d084); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-community { background: linear-gradient(135deg, #64d2ff, #5ac8fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-covid { background: linear-gradient(135deg, #ff2d92, #ff375f); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-time { background: linear-gradient(135deg, #FF9500, #FFCC02); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-coding { background: linear-gradient(135deg, #007AFF, #5856D6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-challenge { background: linear-gradient(135deg, #ff2d92, #ff375f); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-resilience { background: linear-gradient(135deg, #2ea043, #00d084); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-discipline { background: linear-gradient(135deg, #007AFF, #5856D6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-uncle { background: linear-gradient(135deg, #FF9500, #FFCC02); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
.highlight-meaning { background: linear-gradient(135deg, #5856D6, #AF52DE); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }

/* ===== CHARACTER ACHIEVEMENTS ===== */
.character-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.achievement-tag {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.achievement-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.achievement-tag.fitness { background: rgba(255, 107, 107, 0.2); border: 1px solid rgba(255, 107, 107, 0.4); color: #ff6b6b; }
.achievement-tag.social { background: rgba(78, 205, 196, 0.2); border: 1px solid rgba(78, 205, 196, 0.4); color: #4ecdc4; }
.achievement-tag.education { background: rgba(46, 160, 67, 0.2); border: 1px solid rgba(46, 160, 67, 0.4); color: #2ea043; }
.achievement-tag.business { background: rgba(0, 122, 255, 0.2); border: 1px solid rgba(0, 122, 255, 0.4); color: #007AFF; }
.achievement-tag.legal { background: rgba(255, 215, 0, 0.2); border: 1px solid rgba(255, 215, 0, 0.4); color: #ffd700; }
.achievement-tag.innovation { background: rgba(88, 86, 214, 0.2); border: 1px solid rgba(88, 86, 214, 0.4); color: #5856D6; }
.achievement-tag.unique { background: rgba(175, 82, 222, 0.2); border: 1px solid rgba(175, 82, 222, 0.4); color: #AF52DE; }
.achievement-tag.decision { background: rgba(0, 122, 255, 0.2); border: 1px solid rgba(0, 122, 255, 0.4); color: #007AFF; }
.achievement-tag.family { background: rgba(255, 45, 146, 0.2); border: 1px solid rgba(255, 45, 146, 0.4); color: #ff2d92; }
.achievement-tag.experience { background: rgba(255, 149, 0, 0.2); border: 1px solid rgba(255, 149, 0, 0.4); color: #FF9500; }
.achievement-tag.tech { background: rgba(88, 86, 214, 0.2); border: 1px solid rgba(88, 86, 214, 0.4); color: #5856D6; }
.achievement-tag.ai { background: rgba(175, 82, 222, 0.2); border: 1px solid rgba(175, 82, 222, 0.4); color: #AF52DE; }
.achievement-tag.creation { background: rgba(255, 149, 0, 0.2); border: 1px solid rgba(255, 149, 0, 0.4); color: #FF9500; }
.achievement-tag.first { background: rgba(46, 160, 67, 0.2); border: 1px solid rgba(46, 160, 67, 0.4); color: #2ea043; }
.achievement-tag.spirit { background: rgba(255, 149, 0, 0.2); border: 1px solid rgba(255, 149, 0, 0.4); color: #FF9500; }
.achievement-tag.community { background: rgba(100, 210, 255, 0.2); border: 1px solid rgba(100, 210, 255, 0.4); color: #64d2ff; }
.achievement-tag.coding { background: rgba(0, 122, 255, 0.2); border: 1px solid rgba(0, 122, 255, 0.4); color: #007AFF; }
.achievement-tag.web { background: rgba(46, 160, 67, 0.2); border: 1px solid rgba(46, 160, 67, 0.4); color: #2ea043; }
.achievement-tag.start { background: rgba(50, 215, 75, 0.2); border: 1px solid rgba(50, 215, 75, 0.4); color: #32d74b; }
.achievement-tag.challenge { background: rgba(255, 45, 146, 0.2); border: 1px solid rgba(255, 45, 146, 0.4); color: #ff2d92; }
.achievement-tag.resilience { background: rgba(46, 160, 67, 0.2); border: 1px solid rgba(46, 160, 67, 0.4); color: #2ea043; }
.achievement-tag.love { background: rgba(255, 45, 146, 0.2); border: 1px solid rgba(255, 45, 146, 0.4); color: #ff2d92; }
.achievement-tag.discipline { background: rgba(0, 122, 255, 0.2); border: 1px solid rgba(0, 122, 255, 0.4); color: #007AFF; }

/* ===== MISSION CONTROL 2025 - GTA STYLE ===== */
.mission-control-2025 {
    position: relative;
    margin: 6rem 0 0 0;
    padding: 4rem 2rem;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(175, 82, 222, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 30, 0.9) 100%);
    border-radius: 32px;
    border: 2px solid rgba(0, 122, 255, 0.2);
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 100px rgba(0, 122, 255, 0.1);
}

/* Dynamic Background Elements */
.mission-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 122, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 122, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.floating-hud {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hud-element {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(0, 122, 255, 0.8);
    text-align: center;
    backdrop-filter: blur(10px);
    animation: hudFloat 3s ease-in-out infinite;
}

.hud-element:nth-child(2) { animation-delay: 0.5s; }
.hud-element:nth-child(3) { animation-delay: 1s; }

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

.cyber-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 122, 255, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(175, 82, 222, 0.4), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200px 200px;
    animation: particleFloat 6s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

/* Mission HUD Header */
.mission-hud {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.hud-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: rgba(0, 255, 0, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.9);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.mission-title-container {
    text-align: center;
    position: relative;
}

.mission-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.title-cyber {
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 1) 0%,
        rgba(0, 200, 255, 1) 50%,
        rgba(0, 122, 255, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 122, 255, 0.5);
}

.title-year {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 1) 0%,
        rgba(255, 255, 0, 1) 50%,
        rgba(255, 215, 0, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-left: 1rem;
}

.title-scanner {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 122, 255, 0.8) 50%,
        transparent 100%
    );
    animation: scannerMove 3s ease-in-out infinite;
}

@keyframes scannerMove {
    0%, 100% { width: 20%; opacity: 0.3; }
    50% { width: 80%; opacity: 1; }
}

.mission-subtitle {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    animation: textGlitch 4s ease-in-out infinite;
}

@keyframes textGlitch {
    0%, 90%, 100% { opacity: 1; }
    92%, 98% { opacity: 0.8; }
}

.mission-stats-hud {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hud-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(0, 122, 255, 0.9);
    backdrop-filter: blur(10px);
}

.mission-stats-hud .stat-icon {
    font-size: 3rem !important;
}

/* Mission Cards Grid */
.missions-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: 
        radial-gradient(circle at top right, 
            rgba(0, 122, 255, 0.05) 0%, 
            transparent 60%
        ),
        linear-gradient(145deg, 
            rgba(0, 0, 0, 0.6) 0%,
            rgba(20, 20, 30, 0.8) 100%
        );
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 122, 255, 0.6) 50%,
        transparent 100%
    );
}

.mission-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 122, 255, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 50px rgba(0, 122, 255, 0.2);
}

.mission-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.mission-priority {
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.8) 0%,
        rgba(255, 100, 0, 0.8) 100%
    );
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.mission-card.priority-alpha .mission-priority {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.9), rgba(255, 50, 0, 0.9));
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.mission-card.priority-beta .mission-priority {
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.9), rgba(255, 150, 0, 0.9));
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.4);
}

.mission-card.priority-gamma .mission-priority {
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.9), rgba(255, 255, 0, 0.9));
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.4);
}

.mission-card.priority-delta .mission-priority {
    background: linear-gradient(135deg, rgba(0, 255, 100, 0.9), rgba(0, 255, 150, 0.9));
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.4);
}

.mission-card.priority-epsilon .mission-priority {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.9), rgba(0, 200, 255, 0.9));
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
}

.mission-card.priority-omega .mission-priority {
    background: linear-gradient(135deg, rgba(150, 0, 255, 0.9), rgba(200, 0, 255, 0.9));
    box-shadow: 0 0 20px rgba(150, 0, 255, 0.4);
}

.mission-icon-container {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.2) 0%,
        rgba(175, 82, 222, 0.2) 100%
    );
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 12px;
    color: rgba(0, 122, 255, 0.9);
    font-size: 1.5rem;
}

.icon-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid rgba(0, 122, 255, 0.4);
    border-radius: 14px;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.mission-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    line-height: 1.2;
}

.mission-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
}

/* Mission Progress HUD */
.mission-progress-hud {
    margin-top: 1.5rem;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.progress-track {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 122, 255, 1) 0%,
        rgba(0, 200, 255, 1) 50%,
        rgba(175, 82, 222, 1) 100%
    );
    border-radius: 3px;
    position: relative;
    width: 0%;
    transition: width 1.8s cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
    transform-origin: left center;
}

.progress-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-fill.animated .progress-scanner {
    opacity: 1;
    animation: progressScanComplete 2s ease-in-out infinite;
}

@keyframes progressScanComplete {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(calc(500% + 100px)); }
}

.progress-percentage {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: rgba(0, 122, 255, 0.9);
    font-size: 0.9rem;
    min-width: 40px;
}

.progress-status {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, 
        rgba(0, 122, 255, 0.1) 0%,
        rgba(175, 82, 222, 0.1) 50%,
        rgba(0, 122, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.mission-card:hover .mission-glow {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .experience {
        padding: 4rem 0;
    }
    
    /* CONTAINER PADDING FÜR MOBILE ENTFERNEN - DAS WAR DAS PROBLEM! */
    .experience .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .journey-stats {
        display: flex !important;
        gap: 1.5rem !important;
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        max-width: 500px !important;
        margin: 2rem auto !important;
        align-items: center !important;
    }
    
    .journey-stat {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .journey-stat .stat-number {
        font-size: clamp(1.8rem, 4vw, 2.2rem) !important;
        line-height: 1 !important;
    }
    
    .journey-stat .stat-label {
        font-size: clamp(0.7rem, 2vw, 0.8rem) !important;
        word-break: break-word !important;
    }
    
    .journey-stat::after {
        display: none;
    }

    /* MISSION CONTROL 2025 - VERBESSERTES MOBILE LAYOUT */
    .mission-control-2025 {
        margin: 4rem 0 !important;
        padding: 2rem 1rem !important;
    }
    
    .mission-hud {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
        padding: 1.5rem !important;
    }
    
    .hud-indicator {
        justify-content: center !important;
    }
    
    .mission-title-container {
        text-align: center !important;
    }
    
    .mission-stats-hud {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 1rem !important;
    }
    
    .hud-stat {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.7rem !important;
    }
    
    .mission-stats-hud .stat-icon {
        font-size: 1.5rem !important;
    }
    
    /* MISSION CARDS - SINGLE COLUMN LAYOUT FÜR MOBILE */
    .missions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    .mission-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .mission-header {
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .mission-priority {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
        min-width: 60px !important;
    }
    
    .mission-icon-container {
        width: 40px !important;
        height: 40px !important;
    }
    
    .mission-icon-container i {
        font-size: 1.2rem !important;
    }
    
    .mission-content h3 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .mission-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
    
    .mission-progress-hud {
        margin-top: 1rem !important;
    }
    
    .progress-container {
        gap: 0.75rem !important;
    }
    
    .progress-percentage {
        font-size: 0.9rem !important;
    }
    
    .progress-status {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
    }
    
    /* FLOATING HUD ELEMENTE VERSTECKEN AUF MOBILE */
    .floating-hud {
        display: none !important;
    }
    
    /* VOLLSTÄNDIG ÜBERARBEITETE MOBILE ZENTRIERUNG */
    .character-profiles {
        /* Container-Styling */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important; /* Nur minimales Padding für Sicherheit */
        margin: 8rem 0 !important;
        box-sizing: border-box !important;
        
        /* Position zurücksetzen */
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    /* Timeline verstecken auf Mobile */
    .character-profiles::before {
        display: none !important;
    }
    
    .character-profile {
        /* Layout zurücksetzen */
        grid-template-columns: 1fr !important;
        gap: 2rem;
        
        /* Symmetrisches Padding und Sizing */
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto !important;
        padding: 2rem 1.5rem !important;
        box-sizing: border-box !important;
        
        /* Position und Transform zurücksetzen */
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        -webkit-overflow-scrolling: auto !important;
        min-height: auto;
    }
    
    /* Hover-Effekt anpassen */
    .character-profile:hover {
        transform: translateY(-4px) !important;
    }
    
    .character-visual {
        order: -1;
        padding: 1.5rem;
        gap: 1rem;
        margin-top: 0;
    }
    
    .character-content {
        padding: 0;
        width: 100%;
    }
    
    .character-story p {
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .character-header h3 {
        font-size: 2rem;
    }
    
    .character-visual {
        padding: 1rem;
        gap: 1rem;
    }
    
    .stat-circle {
        width: 70px;
        height: 70px;
    }
    
    .character-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .character-stats {
        justify-content: center;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* CONTAINER PADDING ENTFERNEN AUCH FÜR 480PX */
    .experience .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .journey-badge {
        padding: 0.75rem 1.5rem;
        gap: 0.75rem;
    }
    
    .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .journey-badge span {
        font-size: 1rem;
    }
    
    .journey-stats {
        display: flex !important;
        gap: 1rem !important;
        max-width: 350px !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .journey-stat {
        flex: 1 !important;
        min-width: 0 !important;
        text-align: center !important;
    }
    
    .journey-stat .stat-number {
        font-size: clamp(1.5rem, 4vw, 1.8rem) !important;
    }
    
    .journey-stat .stat-label {
        font-size: clamp(0.6rem, 2vw, 0.75rem) !important;
        white-space: nowrap !important;
    }

    /* MISSION CONTROL 2025 - NOCH KOMPAKTER FÜR 480PX */
    .mission-control-2025 {
        margin: 3rem 0 !important;
        padding: 1.5rem 0.75rem !important;
    }
    
    .mission-hud {
        padding: 1rem !important;
        gap: 1.5rem !important;
    }
    
    .mission-main-title {
        font-size: clamp(2rem, 6vw, 2.5rem) !important;
    }
    
    .mission-subtitle {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
    }
    
    .mission-stats-hud {
        gap: 0.75rem !important;
    }
    
    .hud-stat {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.65rem !important;
    }
    
    .mission-stats-hud .stat-icon {
        font-size: 1.2rem !important;
    }
    
    /* MISSION CARDS - NOCH KOMPAKTER */
    .missions-grid {
        gap: 1.25rem !important;
        padding: 0 0.75rem !important;
    }
    
    .mission-card {
        padding: 1.25rem !important;
    }
    
    .mission-header {
        gap: 0.75rem !important;
    }
    
    .mission-priority {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.65rem !important;
        min-width: 50px !important;
    }
    
    .mission-icon-container {
        width: 35px !important;
        height: 35px !important;
    }
    
    .mission-icon-container i {
        font-size: 1rem !important;
    }
    
    .mission-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .mission-content p {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .progress-percentage {
        font-size: 0.8rem !important;
    }
    
    .progress-status {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    /* 480PX BREAKPOINT - SYMMETRISCHE ZENTRIERUNG */
    .character-profiles {
        /* Container Reset */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        width: 100% !important;
        padding: 0 0.75rem !important;
        margin: 8rem 0 !important;
        
        /* Position zurücksetzen */
        position: static !important;
        transform: none !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    /* Timeline verstecken */
    .character-profiles::before {
        display: none !important;
    }
    
    .character-profile {
        /* Kompakteres Layout */
        width: 100% !important;
        max-width: 500px !important;
        padding: 1.5rem 1.25rem !important;
        margin: 0 auto !important;
        
        /* Position zurücksetzen */
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    /* Hover-Effekt reduzieren */
    .character-profile:hover {
        transform: translateY(-2px) !important;
    }
    
    .character-header h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .character-story p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    .achievement-tag {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
        margin: 0.25rem !important;
    }
}

@media (max-width: 375px) {
    .experience .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .journey-stats {
        display: flex !important;
        gap: 0.75rem !important;
        max-width: 320px !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .journey-stat {
        flex: 1 !important;
        min-width: 0 !important;
        text-align: center !important;
    }
    
    .journey-stat .stat-number {
        font-size: clamp(1.3rem, 4vw, 1.6rem) !important;
    }
    
    .journey-stat .stat-label {
        font-size: clamp(0.55rem, 2vw, 0.7rem) !important;
        white-space: nowrap !important;
    }

    /* MISSION CONTROL 2025 - MINIMAL FÜR 375PX */
    .mission-control-2025 {
        margin: 2rem 0 !important;
        padding: 1rem 0.5rem !important;
    }
    
    .mission-hud {
        padding: 0.75rem !important;
        gap: 1rem !important;
    }
    
    .mission-main-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    }
    
    .mission-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .mission-stats-hud {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .hud-stat {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.6rem !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .mission-stats-hud .stat-icon {
        font-size: 1rem !important;
    }
    
    /* MISSION CARDS - MINIMAL LAYOUT */
    .missions-grid {
        gap: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    .mission-card {
        padding: 1rem !important;
    }
    
    .mission-header {
        gap: 0.5rem !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .mission-priority {
        padding: 0.2rem 0.4rem !important;
        font-size: 0.6rem !important;
        min-width: 45px !important;
        order: 2 !important;
    }
    
    .mission-icon-container {
        width: 30px !important;
        height: 30px !important;
        order: 1 !important;
    }
    
    .mission-icon-container i {
        font-size: 0.9rem !important;
    }
    
    .mission-content h3 {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
        text-align: center !important;
    }
    
    .mission-content p {
        font-size: 0.8rem !important;
        margin-bottom: 0.6rem !important;
        text-align: center !important;
    }
    
    .progress-percentage {
        font-size: 0.75rem !important;
    }
    
    .progress-status {
        font-size: 0.6rem !important;
        padding: 0.2rem 0.4rem !important;
    }
    
    /* 375PX CHARACTER PROFILES - ULTRA KOMPAKT */
    .character-profiles {
        /* Container Reset */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
        width: 100% !important;
        padding: 0 0.5rem !important;
        margin: 6rem 0 !important;
        
        /* Position zurücksetzen */
        position: static !important;
        transform: none !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    /* Timeline verstecken */
    .character-profiles::before {
        display: none !important;
    }
    
    .character-profile {
        /* Ultra kompakt */
        width: 100% !important;
        max-width: 400px !important;
        padding: 1.25rem 1rem !important;
        margin: 0 auto !important;
        
        /* Position zurücksetzen */
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    /* Hover-Effekt minimieren */
    .character-profile:hover {
        transform: translateY(-1px) !important;
    }
}

/* ===== PREMIUM INTERACTIVE EFFECTS ===== */
.badge-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
    pointer-events: none;
    z-index: 1;
}

.stat-hover-active {
    animation: statPulse 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes statPulse {
    0% { 
        transform: scale(1);
        box-shadow: 
            0 16px 32px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1),
            0 0 20px rgba(0, 122, 255, 0.1);
    }
    100% { 
        transform: scale(1.02);
        box-shadow: 
            0 18px 36px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1),
            0 0 15px rgba(0, 122, 255, 0.08);
    }
}

/* Enhanced character profile mouse tracking */
.character-profile {
    --glow-intensity: 0.3;
}

.character-profile::after {
    opacity: var(--glow-intensity, 0.3);
}

/* ===== PRAKTIKA CARDS ===== */
.praktika-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.praktika-card {
    background: 
        radial-gradient(circle at top right, 
            rgba(0, 122, 255, 0.03) 0%, 
            transparent 60%
        ),
        linear-gradient(145deg, 
            rgba(255, 255, 255, 0.04) 0%,
            rgba(255, 255, 255, 0.01) 100%
        );
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.praktika-card.highlight {
    border: 1px solid rgba(0, 122, 255, 0.2);
    background: 
        radial-gradient(circle at top right, 
            rgba(0, 122, 255, 0.06) 0%, 
            transparent 60%
        ),
        linear-gradient(145deg, 
            rgba(0, 122, 255, 0.02) 0%,
            rgba(175, 82, 222, 0.02) 100%
        );
    box-shadow: 
        0 12px 24px rgba(0, 122, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.praktika-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(0, 122, 255, 0.1);
}

.praktika-card.highlight:hover {
    border-color: rgba(0, 122, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 122, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 40px rgba(0, 122, 255, 0.2);
}

.praktika-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.praktika-company {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    line-height: 1.2;
}

.praktika-type {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.praktika-card.highlight .praktika-type {
    background: rgba(0, 122, 255, 0.1);
    border-color: rgba(0, 122, 255, 0.2);
    color: rgba(0, 122, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .praktika-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .praktika-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .praktika-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .praktika-card {
        padding: 1rem;
    }
    
    .praktika-company {
        font-size: 1rem;
    }
}

/* ===== VISION CARDS ===== */
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 122, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.dark-mode .vision-card {
    background: rgba(0, 0, 0, 0.3);
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #007AFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: visionIconFloat 3s ease-in-out infinite;
}

.vision-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.vision-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes storyFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-50px) translateX(25px) rotate(90deg); }
    50% { transform: translateY(-30px) translateX(-40px) rotate(180deg); }
    75% { transform: translateY(-60px) translateX(30px) rotate(270deg); }
}

@keyframes journeyMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes journeyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes journeyShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

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

@keyframes journeyDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

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

@keyframes borderGlow {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

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

@keyframes visualGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-45%, -45%) scale(1.1) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes titleUnderline {
    0%, 100% { 
        width: 60px;
        opacity: 0.6;
    }
    50% { 
        width: 120px;
        opacity: 1;
    }
}

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

/* Neuer eleganter Shine-Effekt */
@keyframes elegantShine {
    0% { 
        left: -100%; 
        opacity: 0; 
    }
    50% { 
        left: 0%; 
        opacity: 0.8; 
    }
    100% { 
        left: 100%; 
        opacity: 0; 
    }
}