* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Password Protection Overlay */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0a0e27 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.password-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.password-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lock-icon {
    width: 60px;
    height: 60px;
    color: #4a90e2;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.password-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.password-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#password-input {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

#password-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#password-input:focus {
    border-color: #4a90e2;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

#password-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #4a90e2 0%, #2563eb 100%);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

#password-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

#password-submit:active {
    transform: translateY(0);
}

.password-error {
    color: #ef4444;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.5rem;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

:root {
    /* Legacy variables for hero sections */
    --primary: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --accent-gold: #d4af37;
    --accent-purple: #9b59b6;
    --accent-violet: #8a2be2;

    /* New Modern Color Palette */
    /* Blues */
    --royal-blue: #2563eb;
    --dark-blue: #1e40af;
    --sky-blue: #60a5fa;
    --deep-navy: #0a0e27;
    --midnight-blue: #0f172a;
    --slate-blue: #1e293b;
    --accent-blue: #4a90e2;
    --azure-blue: #4a90e2;
    --very-light-blue: #e6f2ff;
    --pale-blue: #dbeafe;
    --steel-blue: #1e3a5f;
    --off-white-blue: #f8faff;

    /* Greens */
    --emerald-green: #10b981;
    --mint-green: #34d399;
    --pastel-green: #d1fae5;
    --accent-green: #10b981;

    /* Grays & Neutrals */
    --charcoal-gray: #1f2937;
    --cool-gray: #6b7280;
    --light-gray: #9ca3af;
    --cloud-gray: #cbd5e1;
    --soft-gray: #f3f4f6;
    --ash-gray: #e5e7eb;
    --off-white-gray: #f1f1f1;

    /* Whites */
    --white: #ffffff;
    --almost-white: #f9fafb;

    /* Reds */
    --vivid-red: #ef4444;
    --crimson-red: #dc2626;

    /* Dark Blues */
    --slate-black: #2c3e50;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary);
    overflow: hidden;
    color: var(--text-light);
    cursor: grab;
}

body.grabbing {
    cursor: grabbing;
}

/* Main Container */
.hero-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Hero Sections */
.hero-section {
    min-width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Overlays */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Hero 1 - Resume */
.hero-resume {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.hero-resume::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Hero 2 - About */
.hero-about {
    background: linear-gradient(135deg, #2c003e 0%, #512b58 100%);
}

.hero-about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Hero 3 - Personal */
.hero-personal {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a2c6d 100%);
}

.hero-personal::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Hero 4 - Education */
.hero-education {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 100%);
}

.hero-education::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Hero 5 - AI Assistant */
.hero-ai {
    background: linear-gradient(135deg, #1a1a3e 0%, #2e2e5e 100%);
}

.hero-ai::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Hero 4 - Education */
.hero-education {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 100%);
}

.hero-education::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Hero 5 - AI Assistant */
.hero-ai {
    background: linear-gradient(135deg, #1a1a3e 0%, #2e2e5e 100%);
}

.hero-ai::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Hero Content Wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 60px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
.hero-subtitle {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
}
.hero-education .accent {
    color: var(--accent-green);
}

.hero-ai .accent {
    color: var(--accent-violet);
}


.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 30px;
    line-height: 1;
}

.hero-title span {
    display: block;
    font-weight: 600;
.hero-education .hero-cta:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.hero-ai .hero-cta:hover {
    border-color: var(--accent-violet);
    color: var(--accent-violet);
}

}

.hero-description {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
}

/* Accent Colors */
.hero-resume .accent {
    color: var(--accent-gold);
}

.hero-about .accent {
    color: var(--accent-purple);
}

.hero-personal .accent {
    color: var(--accent-purple);
}

/* CTA Buttons */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hero-resume .hero-cta:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.hero-about .hero-cta:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.hero-personal .hero-cta:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.hero-education .hero-cta:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.hero-ai .hero-cta:hover {
    border-color: var(--accent-violet);
    color: var(--accent-violet);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-light);
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-light);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Side Navigation Dots */
.side-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot::before {
    content: attr(data-title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-dot:hover::before {
    opacity: 1;
}

.nav-dot.active {
    background: var(--text-light);
    transform: scale(1.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 998;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.scroll-arrows {
    display: flex;
    gap: 5px;
    opacity: 0.5;
}

/* Detail Panels */
.detail-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--off-white-blue) 0%, var(--almost-white) 100%);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.detail-panel.active {
    transform: translateY(0);
}

.detail-content {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px;
}

.close-button {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--ash-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    color: var(--charcoal-gray);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.close-button:hover {
    background: var(--royal-blue);
    color: var(--white);
    border-color: var(--royal-blue);
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Home Button für Detail Pages */
.home-button {
    position: fixed;
    top: 40px;
    left: 40px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.home-button .home-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .home-button {
        left: 20px;
        top: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .close-button {
        right: 20px;
        top: 20px;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 35px 30px;
    background: var(--white);
    border: 2px solid var(--ash-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    background: var(--very-light-blue);
    border-color: var(--royal-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

.stat-number {
    font-size: 52px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e6c068 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--cool-gray);
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 35px;
    background: var(--white);
    border: 2px solid var(--ash-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content:hover {
    background: var(--very-light-blue);
    border-color: var(--royal-blue);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--royal-blue);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.timeline-date {
    font-size: 14px;
    color: var(--royal-blue);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 600;
}

.timeline-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--charcoal-gray);
}

.timeline-description {
    color: var(--cool-gray);
    line-height: 1.7;
}

/* Skills Cloud */
.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 40px 0;
}

.skill-tag {
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid var(--ash-gray);
    color: var(--charcoal-gray);
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.skill-tag:hover {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
    border-color: var(--royal-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

/* Timeline Company */
.timeline-company {
    font-size: 15px;
    color: var(--accent-gold);
    font-weight: 600;
    margin: 5px 0 15px 0;
    font-style: italic;
}

/* Skills Categories */
.skills-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.skill-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--ash-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.skill-category:hover {
    border-color: var(--royal-blue);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-3px);
}

.skill-category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Certificates Grid */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.certificate-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--ash-gray);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.certificate-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.certificate-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.certificate-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 10px;
    line-height: 1.4;
}

.certificate-issuer {
    font-size: 14px;
    color: var(--cool-gray);
    font-style: italic;
}

/* Languages Grid */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.language-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--ash-gray);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.language-item:hover {
    border-color: var(--royal-blue);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
    transform: translateY(-3px);
}

.language-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 8px;
}

.language-level {
    font-size: 13px;
    color: var(--cool-gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-bar {
    width: 100%;
    height: 8px;
    background: var(--ash-gray);
    border-radius: 10px;
    overflow: hidden;
}

.language-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px;
    }

    .hero-title {
        font-size: 48px;
    }

    .main-nav {
        gap: 20px;
        padding: 10px 20px;
    }

    .side-nav {
        right: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .languages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .skill-category {
        padding: 20px;
    }

    .skill-category-title {
        font-size: 18px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .timeline-dot {
        left: 30px;
    }
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 999;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gold);
    width: 33.33%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Parallax Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

.element-1 {
    top: 10%;
    left: 10%;
    font-size: 100px;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    font-size: 80px;
    animation-delay: 5s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    font-size: 120px;
    animation-delay: 10s;
}

/* Detail Panel Sections */
.detail-header {
    text-align: center;
    margin-bottom: 80px;
}

.detail-main-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--charcoal-gray) 0%, var(--slate-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-main-title.about {
    margin-bottom: 40px;
}

.detail-subtitle {
    font-size: 18px;
    color: var(--cool-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.detail-quote {
    font-size: 22px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--cool-gray);
    font-style: italic;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin: 80px 0 40px;
    letter-spacing: -0.5px;
}

.section-title.gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e6c068 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.purple {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #b47cd1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.blue {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.green {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--mint-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.violet {
    color: var(--accent-violet);
}

/* Personal Introduction Section */
.personal-intro {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

.intro-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.2);
    border: 3px solid var(--accent-purple);
    background: linear-gradient(135deg, var(--ash-gray) 0%, var(--cloud-gray) 100%);
}

.intro-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-image-container:hover .intro-image {
    transform: scale(1.05);
}

.intro-text-container {
    padding: 20px 0;
}

.intro-title {
    font-size: 32px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, #b47cd1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-paragraph {
    line-height: 1.8;
    color: var(--cool-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

/* Three Column Grid */
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--ash-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(180, 124, 209, 0.05) 100%);
    border-color: var(--accent-purple);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(155, 89, 182, 0.2));
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--charcoal-gray);
    font-weight: 700;
}

.feature-text {
    color: var(--cool-gray);
    line-height: 1.6;
}.feature-text {
    color: var(--text-muted);
}

/* Interest Tags - Old (removing) */

/* New Interests Section */
.interests-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--cool-gray);
    padding: 0 20px;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.interest-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.interest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-purple) 0%, #b47cd1 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.interest-card:hover::before {
    transform: scaleX(1);
}

.interest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(155, 89, 182, 0.2);
    border-color: var(--accent-purple);
}

/* Different card colors for categories */
.interest-card.tech:hover {
    border-color: #4A9EFF;
}

.interest-card.tech::before {
    background: linear-gradient(90deg, #4A9EFF 0%, #60C5FF 100%);
}

.interest-card.ai:hover {
    border-color: #9b59b6;
}

.interest-card.ai::before {
    background: linear-gradient(90deg, #9b59b6 0%, #b47cd1 100%);
}

.interest-card.creative:hover {
    border-color: #e74c3c;
}

.interest-card.creative::before {
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 100%);
}

.interest-card.business:hover {
    border-color: #27ae60;
}

.interest-card.business::before {
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
}

.interest-card.productivity:hover {
    border-color: #f39c12;
}

.interest-card.productivity::before {
    background: linear-gradient(90deg, #f39c12 0%, #f1c40f 100%);
}



.interest-card.learning:hover {
    border-color: #16a085;
}

.interest-card.learning::before {
    background: linear-gradient(90deg, #16a085 0%, #1abc9c 100%);
}

.interest-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.interest-icon-large {
    font-size: 56px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.interest-category-badge {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(180, 124, 209, 0.1) 100%);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-purple);
}

.interest-card.tech .interest-category-badge {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(96, 197, 255, 0.1) 100%);
    border-color: rgba(74, 158, 255, 0.3);
    color: #4A9EFF;
}

.interest-card.ai .interest-category-badge {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(180, 124, 209, 0.1) 100%);
    border-color: rgba(155, 89, 182, 0.3);
    color: #9b59b6;
}

.interest-card.creative .interest-category-badge {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.interest-card.business .interest-category-badge {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    border-color: rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.interest-card.productivity .interest-category-badge {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(241, 196, 15, 0.1) 100%);
    border-color: rgba(243, 156, 18, 0.3);
    color: #f39c12;
}

.interest-card.hardware .interest-category-badge {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.1) 0%, rgba(127, 140, 141, 0.1) 100%);
    border-color: rgba(52, 73, 94, 0.3);
    color: #34495e;
}

.interest-card.learning .interest-category-badge {
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(26, 188, 156, 0.1) 100%);
    border-color: rgba(22, 160, 133, 0.3);
    color: #16a085;
}

.interest-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 20px;
    line-height: 1.3;
}

.interest-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.interest-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--cool-gray);
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.interest-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: 700;
    font-size: 16px;
}

.interest-card.tech .interest-list li::before {
    color: #4A9EFF;
}

.interest-card.ai .interest-list li::before {
    color: #9b59b6;
}

.interest-card.creative .interest-list li::before {
    color: #e74c3c;
}

.interest-card.business .interest-list li::before {
    color: #27ae60;
}

.interest-card.productivity .interest-list li::before {
    color: #f39c12;
}

.interest-card.hardware .interest-list li::before {
    color: #34495e;
}

.interest-card.learning .interest-list li::before {
    color: #16a085;
}

.interest-list li:hover {
    transform: translateX(5px);
    color: var(--charcoal-gray);
}

.interest-level {
    margin-top: 20px;
}

.level-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cool-gray);
    margin-bottom: 8px;
}

.level-bar {
    width: 100%;
    height: 8px;
    background: var(--ash-gray);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple) 0%, #b47cd1 100%);
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.interest-card.tech .level-fill {
    background: linear-gradient(90deg, #4A9EFF 0%, #60C5FF 100%);
}

.interest-card.ai .level-fill {
    background: linear-gradient(90deg, #9b59b6 0%, #b47cd1 100%);
}

.interest-card.creative .level-fill {
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 100%);
}

.interest-card.business .level-fill {
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
}

.interest-card.productivity .level-fill {
    background: linear-gradient(90deg, #f39c12 0%, #f1c40f 100%);
}

.interest-card.hardware .level-fill {
    background: linear-gradient(90deg, #34495e 0%, #7f8c8d 100%);
}

.interest-card.learning .level-fill {
    background: linear-gradient(90deg, #16a085 0%, #1abc9c 100%);
}

.level-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.interests-footer {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(180, 124, 209, 0.08) 100%);
    border-radius: 20px;
    border: 2px solid rgba(155, 89, 182, 0.1);
    margin-bottom: 60px;
}

.interests-quote {
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal-gray);
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

/* Weakness Section */
.weakness-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(180, 124, 209, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(155, 89, 182, 0.1);
}

.weakness-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--cool-gray);
    margin: 0;
}

/* Flip Cards Grid */
.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.flip-card {
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 30px rgba(155, 89, 182, 0.15);
}

.flip-card-front {
    background: linear-gradient(135deg, var(--white) 0%, #f9f7fb 100%);
    border: 3px solid var(--accent-purple);
}

.flip-icon {
    font-size: 72px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(155, 89, 182, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.flip-title {
    font-size: 28px;
    color: var(--accent-purple);
    font-weight: 700;
    margin-bottom: 20px;
}

.flip-hint {
    font-size: 14px;
    color: var(--cool-gray);
    font-style: italic;
    margin-top: 15px;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #b47cd1 100%);
    color: var(--white);
    transform: rotateY(180deg);
    text-align: left;
    justify-content: flex-start;
}

.flip-back-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    align-self: flex-start;
}

.flip-back-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.flip-progress {
    width: 100%;
    align-self: flex-start;
}

.flip-progress span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar-mini {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    transition: width 0.8s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.flip-card:hover .flip-card-front {
    box-shadow: 0 12px 40px rgba(155, 89, 182, 0.25);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Contact Box */
.contact-box {
    text-align: center;
    margin-top: 80px;
    padding: 50px;
    background: var(--white);
    border: 2px solid var(--ash-gray);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-size: 28px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e6c068 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-info {
    font-size: 17px;
    line-height: 2;
    color: var(--cool-gray);
}

/* Personal Data Box */
.personal-data-box {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(230, 192, 104, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.data-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--ash-gray);
    transition: all 0.3s ease;
}

.data-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.data-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.data-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal-gray);
}

/* Application Letter */
.application-letter {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: var(--white);
    border: 2px solid var(--ash-gray);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.letter-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--cool-gray);
}

.letter-signature {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Two Column Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.benefit-card {
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--ash-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(96, 165, 250, 0.03) 100%);
    border-color: var(--royal-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.benefit-title {
    font-size: 22px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefit-text {
    line-height: 1.8;
    color: var(--cool-gray);
}

/* Call to Action Box */
.cta-box {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--pale-blue) 100%);
    border: 2px solid var(--royal-blue);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.cta-title {
    font-size: 34px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cta-text {
    font-size: 19px;
    margin-bottom: 40px;
    color: var(--cool-gray);
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--royal-blue) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* Responsive Adjustments for Detail Panels */
@media (max-width: 768px) {
    .detail-main-title {
        font-size: 36px;
    }

    .personal-intro,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-image-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .three-col-grid {
        grid-template-columns: 1fr;
    }

    .interests-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .interest-card {
        padding: 25px;
    }

    .interest-icon-large {
        font-size: 48px;
    }

    .interest-card-title {
        font-size: 20px;
    }

    .interest-list li {
        font-size: 14px;
        padding: 8px 0 8px 24px;
    }

    .interests-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .interests-footer {
        padding: 25px;
    }

    .interests-quote {
        font-size: 16px;
    }

    .data-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .data-item {
        padding: 15px;
    }

    .data-label {
        font-size: 12px;
    }

    .data-value {
        font-size: 16px;
    }

    .flip-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .flip-card {
        height: 300px;
    }

    .flip-card-front,
    .flip-card-back {
        padding: 30px;
    }

    .flip-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .flip-title {
        font-size: 24px;
    }

    .flip-back-title {
        font-size: 20px;
    }

    .flip-back-text {
        font-size: 15px;
    }

    .weakness-intro {
        padding: 20px;
        margin-bottom: 40px;
    }

    .weakness-intro p {
        font-size: 15px;
    }

    .application-letter {
        padding: 30px;
    }

    .detail-content {
        padding: 30px;
    }
}

/* Document Preview */
.document-preview {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--pale-blue) 100%);
    border: 3px dashed var(--royal-blue);
    border-radius: 20px;
    margin-bottom: 80px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.document-preview:hover {
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--very-light-blue) 100%);
    border-color: var(--dark-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.document-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.2));
}

.document-title {
    font-size: 28px;
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--mint-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.document-description {
    font-size: 17px;
    color: var(--cool-gray);
    margin-bottom: 30px;
}

.document-button {
    padding: 15px 40px;
    background: var(--accent-green);
    color: var(--primary);
    border: none;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.document-button:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* Carousel */
.carousel-container {
    position: relative;
    margin: 40px 0 20px;
    padding: 0 80px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    padding: 20px;
}




.degree-card:hover {
    background: rgba(76, 175, 80, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.degree-icon {
    font-size: 72px;
    margin-bottom: 25px;
}

.degree-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--accent-green);
}

.degree-field {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.degree-university {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.degree-period {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.degree-grade {
    font-size: 20px;
    color: var(--accent-green);
    margin-bottom: 30px;
    font-weight: 500;
}

.degree-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.highlight-tag {
    padding: 8px 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    font-size: 14px;
    color: var(--accent-green);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: var(--accent-green);
    font-size: 48px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: var(--accent-green);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-green);
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--accent-green);
}

/* AI Interface Placeholder */
.ai-interface-placeholder {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(180, 124, 209, 0.05) 100%);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.1);
}

.ai-icon {
    font-size: 96px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(138, 43, 226, 0.2));
}

.ai-title {
    font-size: 36px;
    background: linear-gradient(135deg, var(--accent-violet) 0%, #b47cd1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.ai-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--cool-gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

.ai-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.ai-feature {
    text-align: center;
}

.feature-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.ai-feature p {
    font-size: 16px;
    color: var(--charcoal-gray);
    font-weight: 600;
}

.ai-coming-soon {
    padding: 18px 50px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(180, 124, 209, 0.15) 100%);
    border: 2px solid var(--accent-violet);
    border-radius: 30px;
    color: var(--accent-violet);
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Performance Overview */
.performance-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0 60px;
}

.performance-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
    border: none;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(100, 150, 200, 0.15);
}

.performance-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4A9EFF, #60C5FF);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.performance-stat:hover::before {
    transform: scaleX(1);
}

.performance-stat:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(230, 245, 255, 1) 100%);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 158, 255, 0.25);
}

.perf-icon {
    font-size: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(74, 158, 255, 0.2));
}

.perf-number {
    font-size: 52px;
    font-weight: 600;
    background: linear-gradient(135deg, #4A9EFF 0%, #2B7FE8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
}

.perf-label {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #5A7C99;
    font-weight: 600;
}

/* Search and Filter Wrapper */
.search-filter-wrapper {
    margin: 40px 0 30px;
}

.search-box {
    position: relative;
    margin-bottom: 25px;
}

.search-input {
    width: 100%;
    padding: 18px 50px 18px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(74, 158, 255, 0.2);
    color: #2c3e50;
    font-size: 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 10px rgba(74, 158, 255, 0.08);
}

.search-input::placeholder {
    color: #7a8fa8;
}

.search-input:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #4A9EFF;
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.2);
    transform: translateY(-2px);
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(74, 158, 255, 0.1);
    border: none;
    color: #4A9EFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.clear-search.visible {
    opacity: 1;
    pointer-events: all;
}

.clear-search:hover {
    background: rgba(255, 82, 82, 0.15);
    color: #ff5252;
    transform: translateY(-50%) scale(1.1);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid rgba(74, 158, 255, 0.15);
    padding-bottom: 0;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 15px 28px;
    background: transparent;
    border: none;
    color: #7a8fa8;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
    font-weight: 500;
}

.filter-tab:hover {
    color: #4A9EFF;
    background: rgba(74, 158, 255, 0.05);
}

.filter-tab.active {
    color: #4A9EFF;
    border-bottom-color: #4A9EFF;
    background: rgba(74, 158, 255, 0.08);
}

/* Grades Container */
.grades-container {
    margin: 30px 0 60px;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.15);
}

/* Search Highlight */
.highlight {
    background: rgba(76, 175, 80, 0.3);
    padding: 2px 4px;
    border-radius: 3px;
    animation: highlightPulse 0.5s ease;
}

@keyframes highlightPulse {
    0% {
        background: rgba(76, 175, 80, 0);
    }
    50% {
        background: rgba(76, 175, 80, 0.5);
    }
    100% {
        background: rgba(76, 175, 80, 0.3);
    }
}

/* No Results Message */
.no-results-message {
    display: none;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.02);
}

.no-results-icon {
    font-size: 72px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-results-text {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.no-results-hint {
    font-size: 16px;
    color: var(--text-muted);
}


.grades-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 0.5fr 0.7fr 1fr;
    gap: 20px;
    padding: 22px 30px;
    background: linear-gradient(135deg, #4A9EFF 0%, #60C5FF 100%);
    border-bottom: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: white;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 0.5fr 0.7fr 1fr;
    gap: 20px;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(74, 158, 255, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
    max-height: 200px;
    overflow: hidden;
}

.table-row.hidden {
    opacity: 0;
    max-height: 0;
    padding: 0 30px;
    margin: 0;
}

.table-row:hover {
    background: linear-gradient(90deg, rgba(74, 158, 255, 0.05) 0%, transparent 100%);
    transform: translateX(8px);
    border-left: 3px solid #4A9EFF;
    padding-left: 27px;
}

.col-name {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.course-code {
    font-size: 12px;
    color: #4A9EFF;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    background: rgba(74, 158, 255, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
}

.course-title {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.col-semester {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #5A7C99;
}

.col-ects {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.col-grade {
    display: flex;
    align-items: center;
}

.grade-badge {
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.grade-badge.excellent {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    border: none;
}

.grade-badge.good {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    border: none;
}

.grade-badge.satisfactory {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    border: none;
}

.col-status {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 20px;
    font-weight: 600;
}

.status-badge.passed {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(102, 187, 106, 0.15) 100%);
    color: #4CAF50;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

/* Grade Distribution Chart */
.grade-distribution {
    margin: 60px 0;
    padding: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.98) 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.15);
}

.chart-title {
    font-size: 26px;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #4A9EFF 0%, #2B7FE8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chart-bar {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
}

.bar-label {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.bar-wrapper {
    position: relative;
    background: rgba(74, 158, 255, 0.08);
    height: 44px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #4A9EFF 0%, #60C5FF 100%);
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    animation: fillBar 1.5s ease-in-out;
    box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3);
}

@keyframes fillBar {
    from {
        width: 0 !important;
    }
}

.bar-count {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #2c3e50;
    font-weight: 600;
    z-index: 1;
}

/* Document Preview Update */
.document-preview {
    text-align: center;
    padding: 60px;
    background: rgba(76, 175, 80, 0.05);
    border: 2px dashed rgba(76, 175, 80, 0.3);
    margin: 60px 0;
    transition: all 0.3s ease;
}

.document-preview:hover {
    background: rgba(76, 175, 80, 0.08);
    border-color: rgba(76, 175, 80, 0.5);
}

.document-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.document-title {
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.document-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.document-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-green);
    color: var(--primary);
    border: none;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.document-button:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .performance-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .filter-tabs {
        gap: 10px;
    }

    .filter-tab {
        padding: 12px 20px;
        font-size: 13px;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 0.8fr 0.5fr 0.6fr 0.8fr;
        gap: 10px;
        padding: 15px 20px;
        font-size: 12px;
    }

    .course-title {
        font-size: 14px;
    }

    .chart-bar {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }

    .bar-label {
        font-size: 12px;
    }

    .carousel-container {
        padding: 0 60px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .degree-card {
        padding: 30px;
    }

    .ai-features {
        flex-direction: column;
        gap: 30px;
    }

    .document-preview {
        padding: 40px 20px;
    }
}

/* Module Tooltip */
.table-row {
    position: relative;
    cursor: pointer;
}

/* Tooltip Container */
.module-tooltip {
    position: fixed;
    left: -450px;
    top: 50%;
    transform: translateY(-50%);
    width: 440px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.98) 100%);
    border: none;
    border-left: 0;
    border-radius: 0 24px 24px 0;
    color: #2c3e50;
    opacity: 0;
    pointer-events: none;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    z-index: 3000;
    box-shadow: 8px 0 40px rgba(74, 158, 255, 0.25);
    backdrop-filter: blur(20px);
}

.module-tooltip.active {
    left: 0;
    opacity: 1;
}

.tooltip-header {
    padding: 28px 32px;
    background: linear-gradient(135deg, #4A9EFF 0%, #60C5FF 100%);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    border-radius: 0 24px 0 0;
}

.tooltip-course-code {
    font-size: 13px;
    color: white;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
}

.tooltip-course-title {
    font-size: 20px;
    color: white;
    font-weight: 400;
    line-height: 1.4;
}

.tooltip-content {
    padding: 28px 32px 32px;
}

.tooltip-section-title {
    font-size: 12px;
    color: #4A9EFF;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 18px;
    font-weight: 700;
}

.tooltip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #2c3e50;
}

.tooltip-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #4A9EFF;
    font-size: 11px;
    top: 9px;
}

.tooltip-list li:last-child {
    margin-bottom: 0;
}

/* Background Overlay */
.tooltip-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 2999;
    backdrop-filter: blur(3px);
}

.tooltip-overlay.active {
    opacity: 1;
}

/* Custom Scrollbar for Tooltip */
.module-tooltip::-webkit-scrollbar {
    width: 10px;
}

.module-tooltip::-webkit-scrollbar-track {
    background: rgba(74, 158, 255, 0.08);
    border-radius: 0 5px 5px 0;
}

.module-tooltip::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4A9EFF 0%, #60C5FF 100%);
    border-radius: 5px;
}

.module-tooltip::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3A8EEF 0%, #50B5EF 100%);
}

/* Close hint */
.tooltip-close-hint {
    text-align: center;
    padding: 16px;
    font-size: 12px;
    color: #7a8fa8;
    border-top: 1px solid rgba(74, 158, 255, 0.15);
    font-style: normal;
    font-weight: 500;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(74, 158, 255, 0.2);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    padding: 1.5rem 2rem;
    z-index: 99998;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #4A9EFF 0%, #60C5FF 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #3A8EEF 0%, #50B5EF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.cookie-link {
    color: #4A9EFF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #60C5FF;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .cookie-icon {
        font-size: 2rem;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-text h3 {
        font-size: 1rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.65rem 1.5rem;
    }
}

/* ===== DATENSCHUTZ HERO SECTION ===== */
.hero-privacy {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.hero-privacy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-privacy::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 197, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

/* ===== DATENSCHUTZ PANEL ===== */
#privacy-panel {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0a0e27 100%);
}

#privacy-panel .detail-content {
    background: transparent;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0;
}

.privacy-section {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-section:hover {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(74, 158, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.2);
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.privacy-section h2::before {
    content: '📋';
    font-size: 1.3rem;
    flex-shrink: 0;
}

.privacy-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #60C5FF;
    margin: 1.75rem 0 1rem 0;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.privacy-section h3:first-of-type {
    margin-top: 0.5rem;
}

.privacy-section p {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.privacy-section ul li {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.8;
    padding: 0.4rem 0;
    padding-left: 1.75rem;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.privacy-section ul li::before {
    content: '•';
    color: #60C5FF;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
    filter: drop-shadow(0 0 3px rgba(96, 197, 255, 0.5));
}

.privacy-section strong {
    color: #ffffff;
    font-weight: 600;
}

.privacy-footer {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.25) 0%, rgba(96, 197, 255, 0.25) 100%);
    border-color: rgba(74, 158, 255, 0.5);
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.3);
}

.privacy-footer h2::before {
    content: '📞';
}

.privacy-footer p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #f1f5f9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.privacy-footer p:last-child {
    margin-bottom: 0;
}

/* Scrollbar für Privacy Content */
#privacy-panel .detail-content {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 158, 255, 0.5) rgba(255, 255, 255, 0.05);
}

#privacy-panel .detail-content::-webkit-scrollbar {
    width: 10px;
}

#privacy-panel .detail-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

#privacy-panel .detail-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4A9EFF 0%, #60C5FF 100%);
    border-radius: 5px;
}

#privacy-panel .detail-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3A8EEF 0%, #50B5EF 100%);
}

/* Mobile Responsive für Datenschutz */
@media (max-width: 768px) {
    .privacy-content {
        padding: 0.5rem 0;
    }

    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .privacy-section h3 {
        font-size: 1.05rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .privacy-section ul li {
        padding-left: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .module-tooltip {
        width: 90%;
        left: -95%;
    }

    .module-tooltip.active {
        left: 0;
    }
}

/* ============================================
   PERSONAL & PRIVATE SECTION STYLES - REDESIGNED
   ============================================ */

/* Personal Story Grid - Neues modernes Layout */
.personal-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.story-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF6B6B 0%, #FFE66D 25%, #4ECDC4 50%, #95E1D3 75%, #C7CEEA 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.25);
}

.story-card-large {
    grid-column: span 1;
}

.story-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.story-card:hover .story-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05);
}

.story-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.story-tag {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #667eea;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.story-text {
    padding: 2rem 2rem 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.story-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3436;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #636e72;
}

/* Hobbies Grid - Neues dynamisches Layout */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.hobby-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hobby-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.hobby-card:hover::after {
    opacity: 1;
}

.hobby-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(255, 107, 107, 0.3);
}

.hobby-card-video {
    grid-column: span 1;
}

.hobby-video-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
}

.hobby-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hobby-card:hover .hobby-video {
    transform: scale(1.08);
}

.video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 2;
}

.hobby-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.hobby-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.hobby-card:hover .hobby-image {
    transform: scale(1.15) rotate(-2deg);
    filter: brightness(1.1) contrast(1.05);
}

.hobby-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(78, 205, 196, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.hobby-card:hover .hobby-overlay {
    opacity: 1;
}

.hobby-icon {
    font-size: 5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hobby-content {
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 2;
}

.hobby-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hobby-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #636e72;
}

/* Personal Moments Grid - Modernes Masonry-ähnliches Layout */
.personal-moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.moment-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.moment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #11998e 0%, #38ef7d 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 10;
}

.moment-card:hover::before {
    transform: scaleX(1);
}

.moment-card:hover {
    transform: translateY(-15px) rotate(-1deg);
    box-shadow: 0 25px 70px rgba(17, 153, 142, 0.25);
}

.moment-card-featured {
    grid-column: span 1;
}

.moment-video-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    overflow: hidden;
}

.moment-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.moment-card:hover .moment-video {
    transform: scale(1.08);
}

.moment-image-container {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B6B 0%, #556270 100%);
}

.moment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.moment-card:hover .moment-image {
    transform: scale(1.12);
    filter: brightness(1.1) saturate(1.2);
}

.moment-info {
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.moment-badge {
    display: inline-block;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(17, 153, 142, 0.5);
    }
}

.moment-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.moment-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #636e72;
}

/* Dog Section - Special Interactive Feature */
.dog-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 32px;
    padding: 4rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.dog-section::before {
    content: '🐾';
    position: absolute;
    font-size: 20rem;
    opacity: 0.08;
    top: -80px;
    right: -80px;
    transform: rotate(-25deg);
    animation: floatPaw 6s ease-in-out infinite;
}

@keyframes floatPaw {
    0%, 100% {
        transform: rotate(-25deg) translateY(0);
    }
    50% {
        transform: rotate(-20deg) translateY(-20px);
    }
}

.dog-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.dog-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.dog-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-weight: 500;
}

.dog-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dog-image-main {
    position: relative;
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.dog-photo {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

.dog-photo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.dog-heart {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3.5rem;
    animation: heartbeat 1.2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 3;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.25);
    }
    30% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.15);
    }
    60% {
        transform: scale(1);
    }
}

.dog-content {
    padding: 1rem;
}

.dog-name {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dog-story {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.dog-facts {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.dog-fact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.dog-fact:nth-child(1) {
    animation-delay: 0.1s;
}

.dog-fact:nth-child(2) {
    animation-delay: 0.2s;
}

.dog-fact:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dog-fact:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(15px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.fact-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fact-text {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Interactive Life Journey Timeline - NEUES FEATURE */
.life-journey-timeline {
    position: relative;
    padding: 4rem 2rem;
    margin-bottom: 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 32px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.timeline-path {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 3rem;
}

.timeline-line {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    animation: drawPath 2s ease-in-out;
}

@keyframes drawPath {
    from {
        opacity: 0;
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
    }
    to {
        opacity: 1;
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }
}

.timeline-milestones {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.milestone {
    flex: 1;
    min-width: 160px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.milestone-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.milestone-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.milestone-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        width: 24px;
        height: 24px;
        opacity: 1;
    }
    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

.milestone:hover .milestone-dot {
    transform: scale(1.3);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.milestone-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    transform: translateY(10px);
    border: 2px solid transparent;
}

.milestone.active .milestone-card,
.milestone:hover .milestone-card {
    opacity: 1;
    transform: translateY(0);
    border-color: #667eea;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
}

.milestone-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.milestone-year {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.milestone-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 0.8rem;
}

.milestone-desc {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.6;
}

/* Personal Closing - Neu gestaltet */
.personal-closing {
    background: linear-gradient(135deg, #FFE66D 0%, #FF6B6B 100%);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.personal-closing::before {
    content: '✨';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: -50px;
    left: -50px;
    animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.closing-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.closing-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.closing-text {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

/* Responsive Design for Personal Section */
@media (max-width: 1200px) {
    .personal-story-grid {
        grid-template-columns: 1fr;
    }

    .hobbies-grid {
        grid-template-columns: 1fr;
    }

    .personal-moments-grid {
        grid-template-columns: 1fr;
    }

    .dog-showcase {
        grid-template-columns: 1fr;
    }

    .timeline-milestones {
        flex-direction: column;
        align-items: center;
    }

    .milestone {
        width: 100%;
        max-width: 400px;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .story-image-container,
    .hobby-video-container,
    .hobby-image-container,
    .moment-video-wrapper,
    .moment-image-container {
        height: 250px;
    }

    .dog-photo {
        height: 400px;
    }

    .story-text,
    .hobby-content,
    .moment-info {
        padding: 1.5rem;
    }

    .dog-section {
        padding: 2.5rem;
    }

    .dog-name {
        font-size: 2rem;
    }

    .closing-title {
        font-size: 1.8rem;
    }

    .story-title,
    .hobby-title,
    .moment-title {
        font-size: 1.4rem;
    }

    .dog-showcase {
        gap: 2rem;
    }

    .life-journey-timeline {
        padding: 2rem 1rem;
    }

    .timeline-milestones {
        padding: 0 1rem;
    }

    .milestone-card {
        padding: 1.2rem;
    }

    .milestone-icon {
        font-size: 2.5rem;
    }

    .milestone-title {
        font-size: 1.1rem;
    }

    .milestone-desc {
        font-size: 0.9rem;
    }
}

