/* ============================================
   Premium Design System Enhancement
   שדרוג עיצובי מקיף ויוקרתי
   ============================================ */

/* ========== Advanced Animations ========== */

/* Floating Particles Animation */
@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40px) translateX(-5px) scale(0.9);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-20px) translateX(-15px) scale(1.05);
        opacity: 0.7;
    }
}

/* Gradient Shift Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glow Pulse */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3), 0 0 40px rgba(251, 191, 36, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.5), 0 0 80px rgba(251, 191, 36, 0.2);
    }
}

/* Text Shimmer */
@keyframes textShimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Reveal Animation */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Bounce */
@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Border Glow */
@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(251, 191, 36, 0.3);
        box-shadow: 0 0 0 rgba(251, 191, 36, 0);
    }

    50% {
        border-color: rgba(251, 191, 36, 0.8);
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }
}

/* Floating Icon Animation */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(5deg);
    }

    50% {
        transform: translateY(-25px) rotate(-3deg);
    }

    75% {
        transform: translateY(-10px) rotate(3deg);
    }
}

/* Colorful Pulse */
@keyframes colorPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
        border-color: rgba(251, 191, 36, 0.5);
    }

    33% {
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
        border-color: rgba(59, 130, 246, 0.5);
    }

    66% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
        border-color: rgba(16, 185, 129, 0.5);
    }
}

/* Rainbow Shimmer */
@keyframes rainbowShimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Shield Visual Animations */
@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes pulseCore {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(251, 191, 36, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 80px rgba(251, 191, 36, 0.6);
    }
}

@keyframes orbitDot {
    0% {
        transform: rotate(0deg) translateX(170px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(170px) rotate(-360deg);
    }
}

/* ========== Premium Hero Styles ========== */

.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 25%, #2d4a7c 50%, #1e3a5f 75%, #0f172a 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    overflow: hidden;
}

/* Colorful Mesh Background */
.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(251, 191, 36, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 40% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 35%);
    pointer-events: none;
    animation: meshPulse 8s ease-in-out infinite;
}

@keyframes meshPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Floating Particles Container */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}

/* Colorful particles */
.hero-particle:nth-child(1) {
    top: 10%;
    right: 10%;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.9) 0%, transparent 70%);
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.hero-particle:nth-child(2) {
    top: 20%;
    right: 25%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.9) 0%, transparent 70%);
    animation-delay: 1s;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.hero-particle:nth-child(3) {
    top: 30%;
    right: 40%;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.9) 0%, transparent 70%);
    animation-delay: 2s;
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.5);
}

.hero-particle:nth-child(4) {
    top: 15%;
    right: 60%;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.9) 0%, transparent 70%);
    animation-delay: 3s;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.5);
}

.hero-particle:nth-child(5) {
    top: 45%;
    right: 75%;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.8) 0%, transparent 70%);
    animation-delay: 4s;
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
}

.hero-particle:nth-child(6) {
    top: 60%;
    right: 15%;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.9) 0%, transparent 70%);
    animation-delay: 5s;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.hero-particle:nth-child(7) {
    top: 70%;
    right: 35%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
    animation-delay: 6s;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.hero-particle:nth-child(8) {
    top: 80%;
    right: 55%;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, transparent 70%);
    animation-delay: 7s;
    box-shadow: 0 0 22px rgba(16, 185, 129, 0.4);
}

/* Glowing Orbs - more colorful */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 20s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(15px, 15px) scale(1.05);
    }
}

.hero-glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
    top: -15%;
    left: -5%;
}

.hero-glow-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.1) 50%, transparent 70%);
    bottom: -25%;
    right: -10%;
    animation-delay: -10s;
}

/* Animated Title */
.hero-title-premium {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title-premium .highlight {
    display: inline-block;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fcd34d, #fbbf24);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
    filter: drop-shadow(0 2px 10px rgba(251, 191, 36, 0.4));
}

/* Premium Stats */
.hero-stats-premium {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.hero-stat-item {
    text-align: center;
    position: relative;
}

.hero-stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(251, 191, 36, 0.3), transparent);
}

.hero-stat-item:first-child::after {
    display: none;
}

.hero-stat-number {
    font-size: var(--text-4xl);
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== Premium Page Hero ========== */

.page-hero-premium {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    color: var(--color-neutral-0);
    padding: calc(72px + var(--space-20)) 0 var(--space-16);
    position: relative;
    overflow: hidden;
}

.page-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-premium .premium-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    margin: 0 auto var(--space-6);
}

/* ========== Premium Cards ========== */

.card-premium-3d {
    position: relative;
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-neutral-100);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-premium-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-premium-3d:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(251, 191, 36, 0.1);
}

.card-premium-3d:hover::before {
    opacity: 1;
}

/* Card with Glow Border */
.card-glow {
    position: relative;
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.card-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-2xl) + 2px);
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.card-glow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
}

/* ========== Premium Buttons ========== */

.btn-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #1a1a1a;
    font-weight: 700;
    font-size: var(--text-base);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

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

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

/* Glowing Button */
.btn-glow {
    animation: glowPulse 2s ease-in-out infinite;
}

/* ========== Premium Sections ========== */

.section-gradient-light {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
}

.section-gradient-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

.section-gradient-dark {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: var(--color-neutral-0);
    position: relative;
    overflow: hidden;
}

.section-gradient-dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* ========== Premium Icons ========== */

.icon-premium {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: var(--radius-xl);
    color: #1a1a1a;
    font-size: var(--text-2xl);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.25);
    transition: all 0.3s ease;
}

.icon-premium:hover {
    animation: iconBounce 0.5s ease;
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.35);
}

/* ========== Animated List Items ========== */

.list-reveal>* {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.6s ease forwards;
}

.list-reveal>*:nth-child(1) {
    animation-delay: 0.1s;
}

.list-reveal>*:nth-child(2) {
    animation-delay: 0.2s;
}

.list-reveal>*:nth-child(3) {
    animation-delay: 0.3s;
}

.list-reveal>*:nth-child(4) {
    animation-delay: 0.4s;
}

.list-reveal>*:nth-child(5) {
    animation-delay: 0.5s;
}

.list-reveal>*:nth-child(6) {
    animation-delay: 0.6s;
}

.list-reveal>*:nth-child(7) {
    animation-delay: 0.7s;
}

.list-reveal>*:nth-child(8) {
    animation-delay: 0.8s;
}

/* ========== Premium Progress Bars ========== */

.progress-bar-premium {
    height: 12px;
    background: var(--color-neutral-200);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-bar-premium-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
    border-radius: 6px;
    position: relative;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar-premium-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ========== Premium Badges ========== */

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.15) 100%);
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: var(--radius-full);
    color: #fbbf24;
    font-size: var(--text-sm);
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    }

    50% {
        box-shadow: 0 4px 25px rgba(251, 191, 36, 0.4);
    }
}

.badge-gold-solid {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

/* ========== Premium Form Styles ========== */

.form-input-premium {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    background: var(--color-neutral-0);
    border: 2px solid var(--color-neutral-200);
    border-radius: var(--radius-xl);
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.form-input-premium:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
}

/* ========== Premium Accordion ========== */

.accordion-premium {
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.accordion-premium .accordion-header {
    background: transparent;
    padding: var(--space-5) var(--space-6);
    border: none;
    width: 100%;
    text-align: right;
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-premium .accordion-header:hover {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.05), transparent);
}

.accordion-premium .accordion-item.open .accordion-header {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.1), transparent);
    color: #b45309;
}

/* ========== Premium CTA Section ========== */

.cta-section-premium {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0f172a 100%);
    border-radius: var(--radius-3xl);
    padding: var(--space-20) var(--space-8);
    text-align: center;
    color: var(--color-neutral-0);
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 40%);
    animation: rotateSlow 30s linear infinite;
}

.cta-section-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(251, 191, 36, 0.05), transparent);
    pointer-events: none;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-section-premium .cta-content {
    position: relative;
    z-index: 1;
}

/* ========== Premium Divider ========== */

.divider-premium {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin: var(--space-12) 0;
}

.divider-premium::before,
.divider-premium::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

.divider-premium-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: var(--text-lg);
}

/* ========== Responsive Adjustments ========== */

@media (max-width: 768px) {
    .hero-title-premium {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats-premium {
        gap: var(--space-6);
    }

    .hero-stat-item::after {
        display: none;
    }

    .hero-particle:nth-child(n+5) {
        display: none;
    }
}

/* ============================================
   NEW: Advanced Modern Animations
   ============================================ */

/* 3D Float Animation */
@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    }

    50% {
        transform: translateY(-20px) rotateX(0deg) rotateY(2deg);
    }

    75% {
        transform: translateY(-10px) rotateX(-2deg) rotateY(0deg);
    }
}

/* Gradient Flow Animation */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Rainbow Pulse Animation */
@keyframes rainbowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
        border-color: rgba(255, 107, 107, 0.5);
    }

    20% {
        box-shadow: 0 0 25px rgba(255, 154, 86, 0.4);
        border-color: rgba(255, 154, 86, 0.5);
    }

    40% {
        box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
        border-color: rgba(251, 191, 36, 0.5);
    }

    60% {
        box-shadow: 0 0 25px rgba(0, 212, 170, 0.4);
        border-color: rgba(0, 212, 170, 0.5);
    }

    80% {
        box-shadow: 0 0 25px rgba(79, 172, 254, 0.4);
        border-color: rgba(79, 172, 254, 0.5);
    }
}

/* Holographic Shimmer */
@keyframes holographicShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Glow Breathe */
@keyframes glowBreathe {

    0%,
    100% {
        filter: drop-shadow(0 0 10px currentColor);
        opacity: 0.8;
    }

    50% {
        filter: drop-shadow(0 0 30px currentColor);
        opacity: 1;
    }
}

/* Scale Pop */
@keyframes scalePop {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Shake Subtle */
@keyframes shakeSubtle {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

/* ============================================
   NEW: Vibrant Modern Buttons
   ============================================ */

.btn-vibrant-coral {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, #ff6b6b 0%, #ff9a56 50%, #fbbf24 100%);
    background-size: 200% 200%;
    color: #ffffff;
    font-weight: 700;
    font-size: var(--text-base);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientFlow 4s ease infinite;
}

.btn-vibrant-coral:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.45);
}

.btn-vibrant-mint {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, #00d4aa 0%, #4facfe 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    color: #ffffff;
    font-weight: 700;
    font-size: var(--text-base);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientFlow 4s ease infinite;
}

.btn-vibrant-mint:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.45);
}

.btn-vibrant-violet {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #ec4899 100%);
    background-size: 200% 200%;
    color: #ffffff;
    font-weight: 700;
    font-size: var(--text-base);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientFlow 4s ease infinite;
}

.btn-vibrant-violet:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.45);
}

/* ============================================
   NEW: Holographic Cards
   ============================================ */

.card-holographic {
    position: relative;
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.card-holographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 107, 107, 0.08) 15%,
            rgba(255, 154, 86, 0.08) 30%,
            rgba(251, 191, 36, 0.08) 40%,
            rgba(0, 212, 170, 0.12) 50%,
            rgba(79, 172, 254, 0.08) 60%,
            rgba(139, 92, 246, 0.08) 75%,
            transparent 100%);
    animation: holographicShimmer 6s linear infinite;
    pointer-events: none;
}

.card-holographic:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(139, 92, 246, 0.1),
        inset 0 0 60px rgba(139, 92, 246, 0.03);
}

/* Rainbow Border Card */
.card-rainbow-border {
    position: relative;
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-rainbow-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, #ff6b6b, #fbbf24, #00d4aa, #4facfe, #8b5cf6);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradientFlow 5s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-rainbow-border:hover::before {
    opacity: 1;
}

.card-rainbow-border:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

/* ============================================
   NEW: Animated Text Gradients
   ============================================ */

.text-gradient-coral {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff9a56 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-mint {
    background: linear-gradient(135deg, #00d4aa 0%, #4facfe 50%, #00b8ad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-violet {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-rainbow {
    background: linear-gradient(135deg, #ff6b6b 0%, #fbbf24 25%, #00d4aa 50%, #4facfe 75%, #8b5cf6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s linear infinite;
}

.text-gradient-animated {
    background: linear-gradient(90deg, #fbbf24, #ff6b6b, #8b5cf6, #4facfe, #00d4aa, #fbbf24);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s linear infinite;
}

/* ============================================
   NEW: Modern Section Backgrounds
   ============================================ */

.section-mesh-gradient {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    overflow: hidden;
}

.section-mesh-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(79, 172, 254, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 40% 80%, rgba(0, 212, 170, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 35%);
    pointer-events: none;
}

.section-gradient-vibrant {
    background: linear-gradient(135deg,
            rgba(255, 107, 107, 0.03) 0%,
            rgba(251, 191, 36, 0.03) 25%,
            rgba(0, 212, 170, 0.03) 50%,
            rgba(79, 172, 254, 0.03) 75%,
            rgba(139, 92, 246, 0.03) 100%);
}

/* ============================================
   NEW: Floating Decorative Elements
   ============================================ */

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: orbFloat 20s ease-in-out infinite;
}

.floating-orb-coral {
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
}

.floating-orb-mint {
    background: radial-gradient(circle, rgba(0, 212, 170, 0.25) 0%, transparent 70%);
}

.floating-orb-electric {
    background: radial-gradient(circle, rgba(79, 172, 254, 0.25) 0%, transparent 70%);
}

.floating-orb-violet {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
}

/* ============================================
   NEW: Enhanced Icon Containers
   ============================================ */

.icon-vibrant-coral {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff9a56 100%);
    color: white;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.icon-vibrant-coral:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.icon-vibrant-mint {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: white;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    transition: all 0.3s ease;
}

.icon-vibrant-mint:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.icon-vibrant-electric {
    background: linear-gradient(135deg, #4facfe 0%, #00d4aa 100%);
    color: white;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    transition: all 0.3s ease;
}

.icon-vibrant-electric:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.icon-vibrant-violet {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.icon-vibrant-violet:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* ============================================
   NEW: Premium Stats Display
   ============================================ */

.stat-vibrant {
    position: relative;
    text-align: center;
    padding: var(--space-6);
}

.stat-vibrant-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b 0%, #fbbf24 25%, #00d4aa 50%, #4facfe 75%, #8b5cf6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s linear infinite;
    line-height: 1.2;
}

.stat-vibrant-label {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
    margin-top: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ============================================
   NEW: Glowing Badge
   ============================================ */

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(79, 172, 254, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-full);
    color: var(--color-violet-400);
    font-size: var(--text-sm);
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: rainbowPulse 5s ease-in-out infinite;
}

.badge-coral {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 154, 86, 0.15));
    border-color: rgba(255, 107, 107, 0.4);
    color: var(--color-coral-500);
}

.badge-mint {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.15));
    border-color: rgba(0, 212, 170, 0.4);
    color: var(--color-mint-500);
}