/* ===================================
   👤 ABOUT & EXPERIENCE SECTION
   ===================================== */

/* ===== ABOUT SECTION ===== */
.about {
    position: relative;
    padding: 6rem 0 4rem 0;
    background: linear-gradient(180deg, 
        var(--bg-primary) 0%, 
        rgba(var(--accent-primary-rgb, 0, 122, 255), 0.01) 50%,
        var(--bg-primary) 100%
    );
    overflow: hidden;
}

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

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
    top: 20%;
    right: -200px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.08) 0%, transparent 70%);
    bottom: 30%;
    left: -175px;
    animation-delay: -10s;
}

.geometric-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(142, 68, 173, 0.03) 0%, transparent 50%);
    animation: patternMove 30s linear infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-30px) translateX(20px) rotate(120deg); }
    66% { transform: translateY(30px) translateX(-20px) rotate(240deg); }
}

@keyframes patternMove {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== SECTION HEADER ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(var(--accent-primary-rgb, 0, 122, 255), 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--accent-primary-rgb, 0, 122, 255), 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out;
}

.section-badge i {
    font-size: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line {
    color: var(--text-primary);
}

.title-highlight {
    background: linear-gradient(135deg, 
        var(--accent-primary) 0%, 
        var(--accent-secondary) 70%, 
        var(--accent-tertiary) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent-primary) 0%, 
        var(--accent-secondary) 50%, 
        var(--accent-tertiary) 100%
    );
    border-radius: 2px;
    opacity: 0.7;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* ===== STORY CARD ===== */
.story-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 3rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.06) 0%, 
        transparent 50%, 
        rgba(142, 68, 173, 0.03) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 32px;
}

.story-card:hover {
    /* Mehr Elevation und coole 3D-Transformation */
    transform: translateY(-12px) rotateX(2deg) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.15),
        0 0 48px rgba(0, 122, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 122, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.story-card:hover::before {
    opacity: 1;
    /* Animierter Gradient-Shift */
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.12) 0%, 
        rgba(142, 68, 173, 0.08) 50%,
        rgba(255, 159, 10, 0.06) 100%
    );
}

.dark-mode .story-card {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.05);
}

.story-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.story-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 20px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
}

.story-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.story-card:hover .story-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 24px rgba(0, 122, 255, 0.4),
        0 0 20px rgba(0, 122, 255, 0.3);
}

.story-card:hover .story-icon::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.story-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.year-highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.emphasis,
.hobby-highlight,
.skill-highlight {
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
}

.hobby-highlight {
    background: linear-gradient(135deg, #2ea043, #00d084);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-highlight {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TIMELINE PREVIEW ===== */
.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.story-card:hover .timeline-preview {
    transform: translateX(8px) scale(1.05);
}

.preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.story-card:hover .preview-item:not(.active) {
    transform: scale(0.95);
    opacity: 0.7;
}

.story-card:hover .preview-item.active {
    transform: scale(1.1);
    background: rgba(0, 122, 255, 0.15);
    border: 1px solid rgba(0, 122, 255, 0.5);
    box-shadow: 0 8px 16px rgba(0, 122, 255, 0.2);
}

.preview-year {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

.preview-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    border-radius: 1px;
    opacity: 0.5;
}

/* ===== SKILLS SECTION ===== */
.skills-section {
    margin-bottom: 5rem;
}

.skills-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 1) 0%, 
        rgba(142, 68, 173, 1) 50%,
        rgba(255, 159, 10, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    text-align: center;
    filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.3));
}

.skills-icon {
    font-size: 2.5rem;
    margin-right: 0.75rem;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 1) 0%, 
        rgba(142, 68, 173, 1) 50%,
        rgba(255, 159, 10, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.3));
    animation: lightningPulse 3s ease-in-out infinite;
    display: inline-block;
    transform-origin: center;
}

@keyframes lightningPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.3));
    }
    25% { 
        transform: scale(1.1) rotate(-5deg);
        filter: drop-shadow(0 4px 12px rgba(0, 122, 255, 0.5));
    }
    50% { 
        transform: scale(1.05) rotate(3deg);
        filter: drop-shadow(0 6px 16px rgba(142, 68, 173, 0.4));
    }
    75% { 
        transform: scale(1.08) rotate(-2deg);
        filter: drop-shadow(0 3px 10px rgba(255, 159, 10, 0.3));
    }
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.skill-item {
    position: relative;
}

.skill-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.12) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.2),
        0 0 32px rgba(0, 122, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 122, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.22) 0%, 
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.18) 100%
    );
}

.skill-card:hover::before {
    opacity: 0.8;
}

.dark-mode .skill-card {
    background: linear-gradient(135deg, 
        rgba(20, 20, 30, 0.85) 0%, 
        rgba(15, 15, 25, 0.9) 50%,
        rgba(25, 25, 35, 0.8) 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark-mode .skill-card:hover {
    background: linear-gradient(135deg, 
        rgba(35, 35, 50, 0.9) 0%, 
        rgba(25, 25, 40, 0.95) 50%,
        rgba(40, 40, 55, 0.85) 100%
    );
    border-color: rgba(0, 122, 255, 0.3);
}

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

.skill-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--accent-primary);
    font-size: 1.8rem;
    z-index: 2;
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.skill-icon-wrapper:hover {
    transform: scale(1.05);
}

.skill-icon-wrapper i {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.skill-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.9) 0%, 
        rgba(142, 68, 173, 0.8) 50%,
        rgba(255, 159, 10, 0.85) 100%
    );
    border-radius: 20px;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 24px rgba(0, 122, 255, 0.3),
        0 0 16px rgba(142, 68, 173, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.skill-card:hover .skill-icon-bg {
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.9) 0%, 
        rgba(142, 68, 173, 0.8) 50%,
        rgba(255, 159, 10, 0.85) 100%
    );
    box-shadow: 
        0 8px 24px rgba(0, 122, 255, 0.3),
        0 0 16px rgba(142, 68, 173, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.skill-badge {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Essential Skills - Grün */
.skill-badge:not(.featured):not(.technical) {
    background: linear-gradient(135deg, 
        rgba(46, 160, 67, 0.85) 0%, 
        rgba(52, 199, 89, 0.9) 100%
    );
    border: 2px solid rgba(46, 160, 67, 0.6);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 4px 12px rgba(46, 160, 67, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Leadership Skills - Orange */
.skill-badge.featured {
    background: linear-gradient(135deg, 
        rgba(255, 149, 0, 0.9) 0%, 
        rgba(255, 179, 64, 0.95) 100%
    );
    border: 2px solid rgba(255, 149, 0, 0.7);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 4px 12px rgba(255, 149, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Technical Skills - Blau */
.skill-badge.technical {
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.9) 0%, 
        rgba(88, 86, 214, 0.95) 100%
    );
    border: 2px solid rgba(0, 122, 255, 0.7);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 4px 12px rgba(0, 122, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.skill-card:hover .skill-badge::before {
    left: 100%;
}

.skill-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.skill-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.skill-metrics {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
}

.skill-metrics .metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-width: 70px;
}

.skill-metrics .metric:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(var(--accent-primary-rgb, 0, 122, 255), 0.4);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.2);
}

.skill-metrics .metric-value {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 1) 0%, 
        rgba(142, 68, 173, 1) 50%,
        rgba(255, 159, 10, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 8px rgba(0, 122, 255, 0.3));
}

.skill-metrics .metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark-mode .skill-metrics .metric {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .skill-metrics .metric:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--accent-primary-rgb, 0, 122, 255), 0.3);
}

.dark-mode .skill-metrics .metric-label {
    color: rgba(255, 255, 255, 0.7);
}

.skill-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
        rgba(0, 122, 255, 0.2), 
        rgba(142, 68, 173, 0.1), 
        rgba(255, 159, 10, 0.2), 
        rgba(0, 122, 255, 0.2)
    );
    border-radius: 28px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.skill-card:hover .skill-glow {
    opacity: 0.3;
}

/* ===== PERSONAL STATS ===== */
.personal-stats {
    position: relative;
    margin: 3rem 0 2rem 0;
    padding: 2rem 0 1rem 0;
    overflow: visible;
}

.personal-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.02) 0%, 
        transparent 50%, 
        rgba(142, 68, 173, 0.02) 100%
    );
    border-radius: 32px;
    z-index: -1;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-header h3 {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 900;
    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;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 0.9;
    filter: drop-shadow(0 4px 20px rgba(0, 122, 255, 0.4));
}

.stats-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Premium Stat Cards - Apple/GTA 6 Style */
.stat-card {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.6) 0%,
        rgba(20, 20, 40, 0.8) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    backdrop-filter: blur(40px) saturate(180%) brightness(1.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 28px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.05) 0%, 
        rgba(88, 86, 214, 0.08) 25%,
        rgba(175, 82, 222, 0.06) 50%,
        rgba(255, 159, 10, 0.07) 75%,
        rgba(255, 59, 48, 0.05) 100%
    );
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.3) 0%, 
        rgba(88, 86, 214, 0.4) 25%,
        rgba(175, 82, 222, 0.3) 50%,
        rgba(255, 159, 10, 0.4) 75%,
        rgba(255, 59, 48, 0.3) 100%
    );
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, 
        rgba(5, 5, 15, 0.8) 0%,
        rgba(25, 25, 50, 0.9) 50%,
        rgba(5, 5, 15, 0.8) 100%
    );
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 122, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.stat-card:hover::after {
    opacity: 0.8;
}

/* Futuristische RIESIGE Emojis - ERZWUNGEN! */
.stat-icon {
    font-size: 8rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1 !important;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(0, 122, 255, 0.2);
    position: relative;
    z-index: 3;
    display: flex !important;
    width: 100% !important;
    height: 8rem !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 8rem !important;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6));
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(0, 122, 255, 0.4),
        0 0 80px rgba(88, 86, 214, 0.3);
}

/* Premium Gradient Numbers */
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #00D4FF 0%, 
        #5856D6 25%,
        #AF52DE 50%,
        #FF9F0A 75%,
        #FF453A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    filter: drop-shadow(0 4px 12px rgba(0, 122, 255, 0.3));
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.stat-card:hover .stat-number {
    filter: drop-shadow(0 6px 20px rgba(0, 122, 255, 0.5));
    transform: scale(1.05);
}

/* Futuristic Labels */
.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 16px rgba(255, 255, 255, 0.3);
}

/* Premium Description */
.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.stat-card:hover .stat-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Story Card Optimierung */
@media (max-width: 768px) {
    .story-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .story-content {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .story-text {
        width: 100%;
    }
    
    .story-text h3 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .story-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .about-description {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
        width: 100%;
    }
    
    .story-visual {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .timeline-preview {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .preview-item {
        padding: 0.75rem;
    }
    
    .preview-year {
        font-size: 1.2rem;
    }
    
    .preview-label {
        font-size: 0.75rem;
    }
    
    .preview-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .story-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .story-text h3 {
        font-size: 1.3rem;
    }
    
    .story-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .timeline-preview {
        gap: 1rem;
    }
    
    .preview-item {
        padding: 0.5rem;
    }
    
    .preview-year {
        font-size: 1rem;
    }
    
    .preview-label {
        font-size: 0.7rem;
    }
}

/* Mobile Anpassungen - Premium Look beibehalten */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
        min-height: 280px;
        border-radius: 24px;
    }
    
    .stat-icon {
        font-size: 6rem !important;
        height: 6rem !important;
        min-height: 6rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.25rem;
    }
    
    .stat-card {
        padding: 1.75rem 0.75rem;
        min-height: 260px;
        border-radius: 20px;
    }
    
    .stat-icon {
        font-size: 5rem !important;
        height: 5rem !important;
        min-height: 5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .stat-description {
        font-size: 0.8rem;
    }
}

/* Text-Highlights werden beim Hover animiert */
.about-description .year-highlight,
.about-description .emphasis,
.about-description .skill-highlight,
.about-description .hobby-highlight {
    transition: all 0.3s ease;
    position: relative;
}

.story-card:hover .year-highlight {
    filter: drop-shadow(0 0 8px rgba(0, 122, 255, 0.6));
}

.story-card:hover .skill-highlight {
    filter: drop-shadow(0 0 8px rgba(142, 68, 173, 0.6));
}

.story-card:hover .hobby-highlight {
    filter: drop-shadow(0 0 8px rgba(46, 160, 67, 0.6));
}