.heidi-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2), transparent);
    position: relative;
    overflow: hidden;
}

.heidi-intro {
    text-align: center;
    z-index: 1;
}

.sparkle {
    font-size: 5rem;
    font-weight: bold;
    animation: sparkle 2s ease-in-out infinite;
    text-shadow: 0 0 20px var(--gold), 0 0 40px var(--accent);
}

@keyframes sparkle {
    0%, 100% {
        text-shadow: 0 0 20px var(--gold), 0 0 40px var(--accent);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 40px var(--gold), 0 0 80px var(--accent), 0 0 120px #fff;
        transform: scale(1.05);
    }
}

.heidi-title {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 1rem 0;
}

.heidi-quote {
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--gold);
    border-radius: 10px;
}

.heidi-emoji-cloud {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-emoji {
    position: absolute;
    font-size: 4rem;
    animation: floatRandom 8s ease-in-out infinite;
}

.float-emoji:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-emoji:nth-child(2) { top: 30%; right: 15%; animation-delay: 1s; }
.float-emoji:nth-child(3) { bottom: 25%; left: 15%; animation-delay: 2s; }
.float-emoji:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 3s; }
.float-emoji:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }
.float-emoji:nth-child(6) { top: 60%; right: 10%; animation-delay: 5s; }

@keyframes floatRandom {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(20px, -30px) rotate(15deg) scale(1.1);
    }
    66% {
        transform: translate(-20px, -20px) rotate(-15deg) scale(0.9);
    }
}

.heidi-profile {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: linear-gradient(135deg, rgba(255, 147, 251, 0.2), rgba(118, 75, 162, 0.2));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
    text-align: center;
}

.profile-card:hover {
    transform: translateY(-10px) rotate(2deg);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.profile-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.profile-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.detail {
    font-size: 0.95rem !important;
    opacity: 0.8;
    font-style: italic;
}

.heidi-skills {
    padding: 4rem 0;
}

.skills-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent);
    transition: all 0.3s;
}

.skill-item:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-item h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.skill-meter {
    background: rgba(0, 0, 0, 0.3);
    height: 40px;
    border-radius: 20px;
    overflow: visible;
    margin: 1rem 0;
    position: relative;
}

.skill-fill {
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: fillSkill 2s ease-out;
    box-shadow: 0 0 20px var(--gold);
    min-width: fit-content;
    padding: 0 1rem;
}

@keyframes fillSkill {
    from { width: 0; }
}

.daily-routine {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
}

.routine-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.routine-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    transition: all 0.3s;
}

.routine-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    border-left-color: var(--accent);
}

.time {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold);
    min-width: 120px;
    text-align: right;
}

.activity h4 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.activity p {
    opacity: 0.9;
}

.heidi-wisdom {
    padding: 4rem 0;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quote-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent);
    position: relative;
    transition: all 0.3s;
}

.quote-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--gold);
    opacity: 0.3;
}

.quote-card:hover {
    transform: rotate(-2deg) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    text-align: right;
    color: var(--gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .sparkle {
        font-size: 3rem;
    }
    
    .routine-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .time {
        text-align: left;
        min-width: auto;
    }
    
    .skills-showcase {
        grid-template-columns: 1fr;
    }
}