/* ============================================
   JaiDuRab — Pioneer Frames & Badges CSS
   Cadres de profil pour les donateurs pionniers
   ============================================ */

/* ---- Base Pioneer Avatar Container ---- */
.pioneer-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.pioneer-avatar {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.pioneer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ---- BRONZE FRAME — Ami du Quartier ---- */
.pioneer-frame-bronze {
    border: 3px solid #cd7f32;
    box-shadow: 0 0 0 2px rgba(205, 127, 50, 0.3),
                0 2px 8px rgba(205, 127, 50, 0.2);
    transition: box-shadow 0.3s ease;
}

.pioneer-frame-bronze:hover {
    box-shadow: 0 0 0 3px rgba(205, 127, 50, 0.4),
                0 4px 16px rgba(205, 127, 50, 0.3);
}

/* ---- SILVER FRAME — Gardien du Goût ---- */
.pioneer-frame-silver {
    border: 3px solid #c0c0c0;
    box-shadow: 0 0 0 2px rgba(192, 192, 192, 0.3),
                0 2px 8px rgba(192, 192, 192, 0.3);
    background-image: linear-gradient(135deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 100%);
    background-size: 200% 200%;
    animation: silver-shine 3s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
}

.pioneer-frame-silver:hover {
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.5),
                0 4px 20px rgba(192, 192, 192, 0.4),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
}

@keyframes silver-shine {
    0% { background-position: -200% -200%; }
    50% { background-position: 200% 200%; }
    100% { background-position: -200% -200%; }
}

/* Couverts autour du cadre argent */
.pioneer-frame-silver::before {
    content: '🍴';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 14px;
    z-index: 10;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* ---- GOLD FRAME — Légende de JaiDuRab ---- */
.pioneer-frame-gold {
    border: 4px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 3px #ffd700,
                0 0 15px rgba(255, 215, 0, 0.4),
                0 0 30px rgba(255, 215, 0, 0.2);
    animation: gold-glow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.pioneer-frame-gold::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ffd700 0deg,
        #ffec8b 60deg,
        #ffd700 120deg,
        #daa520 180deg,
        #ffd700 240deg,
        #ffec8b 300deg,
        #ffd700 360deg
    );
    z-index: -1;
    animation: gold-rotate 4s linear infinite;
}

.pioneer-frame-gold:hover {
    box-shadow: 0 0 0 4px #ffd700,
                0 0 25px rgba(255, 215, 0, 0.6),
                0 0 50px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

@keyframes gold-glow {
    0% { 
        box-shadow: 0 0 0 3px #ffd700,
                    0 0 15px rgba(255, 215, 0, 0.4),
                    0 0 30px rgba(255, 215, 0, 0.2);
    }
    100% { 
        box-shadow: 0 0 0 3px #ffd700,
                    0 0 25px rgba(255, 215, 0, 0.6),
                    0 0 45px rgba(255, 215, 0, 0.3);
    }
}

@keyframes gold-rotate {
    to { transform: rotate(360deg); }
}

/* Gold crown icon */
.pioneer-frame-gold + .pioneer-crown,
.pioneer-crown-gold {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    animation: crown-float 2s ease-in-out infinite;
}

@keyframes crown-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-3px); }
}

/* ---- Pioneer Badge (inline text badge) ---- */
.pioneer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pioneer-badge-bronze {
    background: linear-gradient(135deg, #cd7f32, #8b5a2b);
    color: #fff;
}

.pioneer-badge-silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: #fff;
}

.pioneer-badge-gold {
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #333;
    animation: badge-gold-shimmer 3s ease-in-out infinite;
}

@keyframes badge-gold-shimmer {
    0%, 100% { background: linear-gradient(135deg, #ffd700, #daa520); }
    50% { background: linear-gradient(135deg, #ffec8b, #ffd700); }
}

/* ---- Pioneer Card (for top donor display in search results) ---- */
.pioneer-card-highlight {
    position: relative;
    overflow: hidden;
}

.pioneer-card-highlight::before {
    content: '⭐ Top Donateur';
    position: absolute;
    top: 10px;
    right: -30px;
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #333;
    padding: 3px 35px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* ---- Ceremony / Confetti Animation ---- */
.donation-ceremony-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ceremony-fade-in 0.5s ease;
}

@keyframes ceremony-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ceremony-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: ceremony-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes ceremony-pop {
    0% { transform: scale(0.3); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.ceremony-badge {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: ceremony-badge-bounce 1s ease-in-out 0.5s;
}

@keyframes ceremony-badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.ceremony-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceremony-title.gold {
    background: linear-gradient(135deg, #ffd700, #daa520);
    -webkit-background-clip: text;
    background-clip: text;
}

.ceremony-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.ceremony-frame-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: #f8f9fa;
}

.ceremony-close {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}

.ceremony-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

/* Confetti particles */
.confetti {
    position: fixed;
    z-index: 100000;
    pointer-events: none;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    animation: confetti-fall 3s ease-in forwards;
}

@keyframes confetti-fall {
    0% { 
        opacity: 1; 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(100vh) rotate(720deg) scale(0.5); 
    }
}

/* ---- Pioneer Progress Bar ---- */
.pioneer-progress {
    background: #f0f0f0;
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    position: relative;
}

.pioneer-progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.pioneer-progress-bar.bronze {
    background: linear-gradient(90deg, #cd7f32, #8b5a2b);
}

.pioneer-progress-bar.silver {
    background: linear-gradient(90deg, #c0c0c0, #a0a0a0);
}

.pioneer-progress-bar.gold {
    background: linear-gradient(90deg, #ffd700, #daa520);
}

.pioneer-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progress-shimmer 2s infinite;
}

@keyframes progress-shimmer {
    to { left: 100%; }
}

/* ---- Pioneer Tier Cards (for donation page) ---- */
.pioneer-tier-card {
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pioneer-tier-card:hover {
    transform: translateY(-5px);
}

.pioneer-tier-card.bronze {
    border: 2px solid #cd7f32;
    background: linear-gradient(135deg, #fdf4e6, #fff);
}

.pioneer-tier-card.silver {
    border: 2px solid #c0c0c0;
    background: linear-gradient(135deg, #f5f5f5, #fff);
}

.pioneer-tier-card.gold {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6, #fff);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.pioneer-tier-card.gold::before {
    content: '👑 Le plus populaire';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #333;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px;
}

.pioneer-tier-card .tier-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.pioneer-tier-card .tier-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.pioneer-tier-card .tier-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.pioneer-tier-card .tier-benefits {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
    padding: 0 0.5rem;
}

.pioneer-tier-card .tier-benefits li {
    list-style: none;
    padding: 3px 0;
}

.pioneer-tier-card .tier-benefits li::before {
    content: '✓ ';
    color: #27ae60;
    font-weight: 700;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .pioneer-frame-gold::before {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }

    .ceremony-card {
        padding: 2rem 1.5rem;
    }

    .ceremony-badge {
        font-size: 3rem;
    }

    .ceremony-title {
        font-size: 1.4rem;
    }
}

/* ============================================
   PLATINUM FRAME — Maitre des Saveurs (500+)
   ============================================ */
.pioneer-frame-platinum {
    border: 4px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 3px #e5e4e2,
                0 0 12px rgba(229, 228, 226, 0.5),
                0 0 25px rgba(192, 192, 192, 0.3),
                inset 0 0 10px rgba(255, 255, 255, 0.15);
    animation: platinum-pulse 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    position: relative;
}

.pioneer-frame-platinum::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #e5e4e2 0deg,
        #ffffff 45deg,
        #c0c0c0 90deg,
        #e5e4e2 135deg,
        #ffffff 180deg,
        #b8b8b8 225deg,
        #e5e4e2 270deg,
        #ffffff 315deg,
        #e5e4e2 360deg
    );
    z-index: -1;
    animation: platinum-rotate 6s linear infinite;
}

.pioneer-frame-platinum::after {
    content: '\1F48E';
    position: absolute;
    top: -10px;
    right: -6px;
    font-size: 16px;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    animation: platinum-gem-pulse 2s ease-in-out infinite;
}

.pioneer-frame-platinum:hover {
    box-shadow: 0 0 0 4px #e5e4e2,
                0 0 20px rgba(229, 228, 226, 0.7),
                0 0 40px rgba(192, 192, 192, 0.4),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

@keyframes platinum-pulse {
    0% {
        box-shadow: 0 0 0 3px #e5e4e2,
                    0 0 12px rgba(229, 228, 226, 0.5),
                    0 0 25px rgba(192, 192, 192, 0.3);
    }
    100% {
        box-shadow: 0 0 0 3px #e5e4e2,
                    0 0 20px rgba(229, 228, 226, 0.7),
                    0 0 35px rgba(192, 192, 192, 0.4);
    }
}

@keyframes platinum-rotate {
    to { transform: rotate(360deg); }
}

@keyframes platinum-gem-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* ============================================
   DIAMOND FRAME — Diamant Legendaire (1000+)
   Le plus prestigieux — animation spectaculaire
   ============================================ */
.pioneer-frame-diamond {
    border: 5px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 4px #b9f2ff,
                0 0 18px rgba(79, 195, 247, 0.6),
                0 0 35px rgba(3, 169, 244, 0.3),
                0 0 60px rgba(3, 169, 244, 0.15),
                inset 0 0 15px rgba(185, 242, 255, 0.2);
    animation: diamond-mega-glow 2.5s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    position: relative;
}

.pioneer-frame-diamond::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #b9f2ff 0deg,
        #e1f5fe 30deg,
        #4fc3f7 60deg,
        #b9f2ff 90deg,
        #81d4fa 120deg,
        #e1f5fe 150deg,
        #4fc3f7 180deg,
        #b9f2ff 210deg,
        #e1f5fe 240deg,
        #29b6f6 270deg,
        #81d4fa 300deg,
        #e1f5fe 330deg,
        #b9f2ff 360deg
    );
    z-index: -1;
    animation: diamond-rotate 3s linear infinite;
}

.pioneer-frame-diamond::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    background: transparent;
    border: 2px dashed rgba(79, 195, 247, 0.4);
    z-index: -2;
    animation: diamond-orbit 8s linear infinite reverse;
}

.pioneer-frame-diamond:hover {
    box-shadow: 0 0 0 5px #b9f2ff,
                0 0 30px rgba(79, 195, 247, 0.8),
                0 0 60px rgba(3, 169, 244, 0.5),
                0 0 90px rgba(3, 169, 244, 0.25);
    transform: scale(1.08);
}

@keyframes diamond-mega-glow {
    0% {
        box-shadow: 0 0 0 4px #b9f2ff,
                    0 0 18px rgba(79, 195, 247, 0.6),
                    0 0 35px rgba(3, 169, 244, 0.3),
                    0 0 60px rgba(3, 169, 244, 0.15);
    }
    50% {
        box-shadow: 0 0 0 4px #e1f5fe,
                    0 0 25px rgba(79, 195, 247, 0.8),
                    0 0 50px rgba(3, 169, 244, 0.4),
                    0 0 80px rgba(3, 169, 244, 0.2);
    }
    100% {
        box-shadow: 0 0 0 4px #b9f2ff,
                    0 0 20px rgba(79, 195, 247, 0.7),
                    0 0 40px rgba(3, 169, 244, 0.35),
                    0 0 70px rgba(3, 169, 244, 0.18);
    }
}

@keyframes diamond-rotate {
    to { transform: rotate(360deg); }
}

@keyframes diamond-orbit {
    to { transform: rotate(360deg); }
}

/* Diamond crown — float + sparkle */
.pioneer-crown-diamond {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    z-index: 10;
    filter: drop-shadow(0 2px 6px rgba(3, 169, 244, 0.5));
    animation: diamond-crown-float 2s ease-in-out infinite, diamond-sparkle 1.5s ease-in-out infinite;
}

@keyframes diamond-crown-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes diamond-sparkle {
    0%, 100% { filter: drop-shadow(0 2px 6px rgba(3, 169, 244, 0.5)) brightness(1); }
    50% { filter: drop-shadow(0 4px 12px rgba(3, 169, 244, 0.8)) brightness(1.2); }
}

/* Sparkle particles around diamond avatar */
.diamond-sparkle-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

.diamond-sparkle-ring::before,
.diamond-sparkle-ring::after {
    content: '\2726';
    position: absolute;
    font-size: 10px;
    color: #4fc3f7;
    animation: sparkle-orbit 4s linear infinite;
}

.diamond-sparkle-ring::before {
    top: 0;
    left: 50%;
}

.diamond-sparkle-ring::after {
    bottom: 0;
    right: 10%;
    animation-delay: -2s;
}

@keyframes sparkle-orbit {
    0% { opacity: 0; transform: scale(0.5); }
    25% { opacity: 1; transform: scale(1.2); }
    50% { opacity: 0.3; transform: scale(0.8); }
    75% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* ---- PLATINUM BADGE ---- */
.pioneer-badge-platinum {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #333;
    font-weight: 700;
    animation: badge-platinum-shimmer 4s ease-in-out infinite;
}

@keyframes badge-platinum-shimmer {
    0%, 100% { background: linear-gradient(135deg, #e5e4e2, #b8b8b8); }
    50% { background: linear-gradient(135deg, #ffffff, #e5e4e2); }
}

/* ---- DIAMOND BADGE ---- */
.pioneer-badge-diamond {
    background: linear-gradient(135deg, #b9f2ff, #4fc3f7, #0288d1);
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    animation: badge-diamond-shimmer 3s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(3, 169, 244, 0.3);
}

@keyframes badge-diamond-shimmer {
    0%, 100% { background: linear-gradient(135deg, #b9f2ff, #4fc3f7, #0288d1); }
    33% { background: linear-gradient(135deg, #e1f5fe, #81d4fa, #039be5); }
    66% { background: linear-gradient(135deg, #4fc3f7, #b9f2ff, #0288d1); }
}

/* ---- Progress Bars ---- */
.pioneer-progress-bar.platinum {
    background: linear-gradient(90deg, #e5e4e2, #c0c0c0, #e5e4e2);
    background-size: 200% 100%;
    animation: progress-shimmer 2s infinite, platinum-bar-flow 3s ease-in-out infinite;
}

@keyframes platinum-bar-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pioneer-progress-bar.diamond {
    background: linear-gradient(90deg, #b9f2ff, #4fc3f7, #0288d1, #4fc3f7, #b9f2ff);
    background-size: 300% 100%;
    animation: progress-shimmer 2s infinite, diamond-bar-flow 2s ease-in-out infinite;
}

@keyframes diamond-bar-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ---- Tier Cards ---- */
.pioneer-tier-card.platinum {
    border: 3px solid #e5e4e2;
    background: linear-gradient(135deg, #fafafa, #f0f0f0, #fff);
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.3);
}

.pioneer-tier-card.diamond {
    border: 3px solid #4fc3f7;
    background: linear-gradient(135deg, #e1f5fe, #f0fbff, #fff);
    box-shadow: 0 4px 25px rgba(3, 169, 244, 0.25),
                0 0 40px rgba(79, 195, 247, 0.1);
    animation: diamond-card-glow 3s ease-in-out infinite alternate;
}

@keyframes diamond-card-glow {
    0% { box-shadow: 0 4px 25px rgba(3, 169, 244, 0.25), 0 0 40px rgba(79, 195, 247, 0.1); }
    100% { box-shadow: 0 6px 30px rgba(3, 169, 244, 0.35), 0 0 60px rgba(79, 195, 247, 0.15); }
}

/* ---- Ceremony Titles ---- */
.ceremony-title.platinum {
    background: linear-gradient(135deg, #e5e4e2, #8e8d8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceremony-title.diamond {
    background: linear-gradient(135deg, #4fc3f7, #0288d1, #b9f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Admin Tier Cards ---- */
.tier-card.tier-platinum {
    background: linear-gradient(135deg, #e5e4e2, #8e8d8a);
    color: #333;
}

.tier-card.tier-diamond {
    background: linear-gradient(135deg, #b9f2ff, #4fc3f7);
    color: #003c5e;
    position: relative;
    overflow: hidden;
}

.tier-card.tier-diamond::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.15) 45%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.15) 55%,
        transparent 60%
    );
    animation: diamond-card-shine 4s ease-in-out infinite;
}

@keyframes diamond-card-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .pioneer-frame-platinum::before {
        top: -4px; left: -4px; right: -4px; bottom: -4px;
    }
    .pioneer-frame-diamond::before {
        top: -6px; left: -6px; right: -6px; bottom: -6px;
    }
    .pioneer-frame-diamond::after {
        top: -10px; left: -10px; right: -10px; bottom: -10px;
    }
    .pioneer-crown-diamond {
        font-size: 18px;
        top: -14px;
    }
}
