/* ===== About Page Premium Styles - Dark & Gold ===== */

/* Hero Section */
.about-hero {
    padding: 200px 0 150px;
    background: 
        linear-gradient(135deg, #000000 0%, #0a0e1a 30%, #1a1a2e 70%, #2d1b69 100%),
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(138, 43, 226, 0.08) 0%, transparent 40%);
    animation: heroPulse 6s ease-in-out infinite alternate;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(255, 215, 0, 0.03) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 98px, rgba(255, 215, 0, 0.03) 100px);
    opacity: 0.5;
}

@keyframes heroPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.about-hero .container {
    position: relative;
    z-index: 3;
}

.hero-badge-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00);
    background-size: 200% 100%;
    color: #000;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: badgeGlowAbout 3s ease-in-out infinite alternate, badgeFloatAbout 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShineAbout 2s infinite;
}

@keyframes badgeGlowAbout {
    0% { box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

@keyframes badgeFloatAbout {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes badgeShineAbout {
    0% { left: -100%; }
    100% { left: 100%; }
}

.about-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    animation: heroEntrance 1.5s ease-out;
}

@keyframes heroEntrance {
    0% { opacity: 0; transform: translateY(50px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.about-hero .highlight {
    background: linear-gradient(45deg, #ffd700, #ff8c00, #ffd700);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftAbout 3s ease-in-out infinite;
}

@keyframes gradientShiftAbout {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-hero p {
    font-size: 1.4rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: subtitleFadeAbout 2s ease-out 0.5s both;
}

@keyframes subtitleFadeAbout {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ===== Project History Section ===== */
.project-history {
    padding: 120px 0;
    background: 
        linear-gradient(180deg, #0a0e1a 0%, #000000 50%, #0a0e1a 100%),
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.project-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
    animation: sectionGlowAbout 8s ease-in-out infinite alternate;
}

@keyframes sectionGlowAbout {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.history-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.8);
}

.history-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00);
    background-size: 200% 100%;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: badgeGlowAbout 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.history-content .section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShineAbout 2s infinite;
}

.history-content p {
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.history-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.history-card {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(255, 215, 0, 0.03), transparent);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.history-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.history-card .card-icon i {
    font-size: 1.5rem;
    color: #000;
}

.history-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: 700;
}

.history-card p {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(45deg, #ffd700, #ff8c00, #ffd700);
    background-size: 200% 100%;
    color: #000000;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: badgeGlowAbout 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.version-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShineAbout 2.5s infinite;
}

/* ===== Team Section ===== */
.team-section {
    padding: 120px 0;
    background: 
        linear-gradient(180deg, #0a0e1a 0%, #000000 50%, #0a0a0a 100%),
        radial-gradient(ellipse at center bottom, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.team-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00);
    background-size: 200% 100%;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: badgeGlowAbout 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.team-header .section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShineAbout 2s infinite;
}

.team-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.8);
}

.team-subtitle {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.team-category {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05)),
        rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: all 0.4s ease;
}

.category-header h3:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.25);
    transform: translateY(-3px);
}

.category-header h3 i {
    font-size: 1.3rem;
    color: #ffd700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(255, 215, 0, 0.03), transparent);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 25px;
    padding: 45px 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.member-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: 
        linear-gradient(45deg, #ffd700, #ff8c00, #ffd700),
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%, 100% 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: iconGlowAbout 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.member-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: iconShineAbout 3s infinite;
}

@keyframes iconGlowAbout {
    0% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.4); }
}

@keyframes iconShineAbout {
    0% { opacity: 0; transform: rotate(0deg); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(180deg); }
}

.member-icon i {
    font-size: 2.5rem;
    color: #000;
    z-index: 1;
    position: relative;
}

.team-member h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.role {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
}

.bio {
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* In Loving Memory — Mila */
.team-dedication {
    margin-top: 80px;
    padding: 40px 0 20px;
    position: relative;
    isolation: isolate;
}

.dedication-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px 52px;
    background:
        linear-gradient(165deg, rgba(18, 28, 22, 0.97) 0%, rgba(10, 14, 26, 0.98) 45%, rgba(22, 18, 32, 0.97) 100%);
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 28px;
    box-shadow:
        0 0 0 1px rgba(255, 182, 193, 0.08) inset,
        0 0 80px rgba(201, 169, 97, 0.12),
        0 30px 80px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.dedication-frame-glow {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(76, 175, 80, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 182, 193, 0.1) 0%, transparent 40%);
    animation: dedicationGlowPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.dedication-vine {
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(76, 175, 80, 0.25) 30%, rgba(56, 142, 60, 0.15) 70%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

.dedication-vine--left {
    left: 0;
    border-radius: 28px 0 0 28px;
    box-shadow: inset 12px 0 30px rgba(76, 175, 80, 0.15);
}

.dedication-vine--right {
    right: 0;
    border-radius: 0 28px 28px 0;
    box-shadow: inset -12px 0 30px rgba(76, 175, 80, 0.15);
}

.dedication-portrait {
    position: relative;
    max-width: 520px;
    margin: 0 auto 36px;
    border-radius: 20px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.7), rgba(255, 182, 193, 0.45), rgba(201, 169, 97, 0.7));
    background-size: 200% 200%;
    animation: dedicationBorderShift 6s ease infinite;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.dedication-portrait-aura {
    position: absolute;
    inset: -20px;
    border-radius: 28px;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.35) 0%, transparent 70%);
    animation: dedicationAuraPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.dedication-portrait-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.25);
    pointer-events: none;
    z-index: 0;
}

.dedication-portrait-ring--outer {
    inset: -28px;
    animation: dedicationRingSpin 24s linear infinite;
    border-style: dashed;
    opacity: 0.5;
}

.dedication-portrait-ring--inner {
    inset: -14px;
    animation: dedicationRingSpin 18s linear infinite reverse;
    opacity: 0.35;
}

.dedication-portrait-shimmer {
    position: absolute;
    inset: 6px;
    border-radius: 16px;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.dedication-portrait-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 45%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
    animation: dedicationShimmer 5s ease-in-out infinite;
}

.dedication-photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.dedication-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.dedication-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    margin-bottom: 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 248, 235, 0.95);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.22), rgba(255, 182, 193, 0.12));
    border: 1px solid rgba(201, 169, 97, 0.45);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
    animation: dedicationBadgeGlow 3s ease-in-out infinite alternate;
}

.dedication-badge i {
    color: #ffb6c1;
    font-size: 0.85rem;
    animation: dedicationHeartBeat 2.5s ease-in-out infinite;
}

.team-dedication h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow:
        0 0 30px rgba(201, 169, 97, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

.dedication-role {
    color: var(--primary-color, #c9a961);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.dedication-text {
    position: relative;
    z-index: 2;
    color: rgba(226, 232, 240, 0.88);
    line-height: 1.9;
    font-size: 1.06rem;
    font-style: italic;
    margin: 0 auto 20px;
    max-width: 620px;
}

.dedication-signoff {
    position: relative;
    z-index: 2;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 169, 97, 0.95);
    margin: 0;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.35);
}

/* Ambient particles */
.dedication-ambient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.dedication-petal {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffb6c1 0%, #f48fb1 50%, transparent 70%);
    border-radius: 50% 0 50% 50%;
    opacity: 0;
    animation: dedicationPetalFall var(--fall-duration, 12s) linear infinite;
    animation-delay: var(--fall-delay, 0s);
}

.dedication-petal:nth-child(1)  { left: 8%;  --fall-duration: 14s; --fall-delay: 0s;   width: 7px;  height: 7px; }
.dedication-petal:nth-child(2)  { left: 18%; --fall-duration: 11s; --fall-delay: 2s;   width: 9px;  height: 9px; }
.dedication-petal:nth-child(3)  { left: 28%; --fall-duration: 16s; --fall-delay: 4s;   width: 6px;  height: 6px; }
.dedication-petal:nth-child(4)  { left: 42%; --fall-duration: 13s; --fall-delay: 1s;   width: 8px;  height: 8px; }
.dedication-petal:nth-child(5)  { left: 55%; --fall-duration: 15s; --fall-delay: 3s;   width: 10px; height: 10px; }
.dedication-petal:nth-child(6)  { left: 68%; --fall-duration: 12s; --fall-delay: 5s;   width: 7px;  height: 7px; }
.dedication-petal:nth-child(7)  { left: 78%; --fall-duration: 17s; --fall-delay: 2.5s; width: 8px;  height: 8px; }
.dedication-petal:nth-child(8)  { left: 90%; --fall-duration: 13s; --fall-delay: 6s;   width: 6px;  height: 6px; }

.dedication-spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(255, 215, 0, 0.6);
    opacity: 0;
    animation: dedicationSparkFloat var(--spark-duration, 8s) ease-in-out infinite;
    animation-delay: var(--spark-delay, 0s);
}

.dedication-spark:nth-child(9)  { left: 12%; top: 30%; --spark-duration: 7s;  --spark-delay: 0s; }
.dedication-spark:nth-child(10) { left: 85%; top: 25%; --spark-duration: 9s;  --spark-delay: 1.5s; }
.dedication-spark:nth-child(11) { left: 25%; top: 70%; --spark-duration: 8s;  --spark-delay: 3s; }
.dedication-spark:nth-child(12) { left: 72%; top: 65%; --spark-duration: 10s; --spark-delay: 2s; }
.dedication-spark:nth-child(13) { left: 50%; top: 15%; --spark-duration: 6s;  --spark-delay: 4s; }
.dedication-spark:nth-child(14) { left: 38%; top: 85%; --spark-duration: 11s; --spark-delay: 1s; }

@keyframes dedicationGlowPulse {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.05); }
}

@keyframes dedicationBorderShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

@keyframes dedicationAuraPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50%      { opacity: 1;   transform: scale(1.04); }
}

@keyframes dedicationRingSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes dedicationShimmer {
    0%, 35%  { transform: translateX(0) skewX(-12deg); opacity: 0; }
    50%      { opacity: 1; }
    65%, 100% { transform: translateX(320%) skewX(-12deg); opacity: 0; }
}

@keyframes dedicationBadgeGlow {
    0%   { box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15); }
    100% { box-shadow: 0 4px 28px rgba(255, 182, 193, 0.25), 0 0 40px rgba(201, 169, 97, 0.2); }
}

@keyframes dedicationHeartBeat {
    0%, 100% { transform: scale(1); }
    15%      { transform: scale(1.2); }
    30%      { transform: scale(1); }
    45%      { transform: scale(1.12); }
}

@keyframes dedicationPetalFall {
    0%   { transform: translateY(-20px) rotate(0deg) translateX(0); opacity: 0; }
    8%   { opacity: 0.85; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(520px) rotate(720deg) translateX(30px); opacity: 0; }
}

@keyframes dedicationSparkFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    20%      { opacity: 0.9; transform: translateY(-8px) scale(1); }
    50%      { opacity: 0.4; transform: translateY(-20px) scale(0.8); }
    80%      { opacity: 0.7; transform: translateY(-6px) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .dedication-frame-glow,
    .dedication-portrait,
    .dedication-portrait-aura,
    .dedication-portrait-ring,
    .dedication-portrait-shimmer::after,
    .dedication-badge,
    .dedication-badge i,
    .dedication-petal,
    .dedication-spark {
        animation: none !important;
    }

    .dedication-petal,
    .dedication-spark {
        display: none;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .history-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 150px 0 100px;
        min-height: auto;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .team-section h2 {
        font-size: 2.5rem;
    }

    .history-content h2 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .history-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .category-header h3 {
        font-size: 1.2rem;
        padding: 12px 25px;
    }

    .dedication-inner {
        padding: 40px 20px 36px;
    }

    .dedication-portrait {
        max-width: 100%;
        margin-bottom: 28px;
    }

    .dedication-portrait-ring--outer {
        inset: -18px;
    }

    .team-dedication h3 {
        font-size: 1.75rem;
    }

    .dedication-signoff {
        font-size: 0.82rem;
        letter-spacing: 2px;
    }

    .dedication-vine {
        width: 40px;
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .team-section h2 {
        font-size: 2rem;
    }
}
