/* ==========================================
   PREMIUM UI/UX ENHANCEMENTS
   ========================================== */

/* ==========================================
   1. GPU ACCELERATION (Hardware Acceleration)
   ========================================== */
.glass-card,
.featured-card,
.cursor-dot,
.cursor-outline,
#sidebar,
.sidebar,
.nav-item,
.track-item,
.animate-fade-in {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* 2. Custom Scrollbar - Cyan themed */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00bcd4 0%, #bc13fe 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00f2ff 0%, #d946ef 100%);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #00bcd4 transparent;
}

/* 1. Glassmorphism UI - Buzlu Cam (Optimized) */
.glass {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 242, 255, 0.15);
    transform: translateY(-3px) translateZ(0);
}

/* Sidebar Glassmorphism (Optimized) */
#sidebar,
.sidebar {
    background: rgba(15, 15, 15, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================
   MOBILE PERFORMANCE - Disable heavy effects
   ========================================== */
@media (max-width: 768px),
(hover: none) {

    .glass,
    .glass-card,
    #sidebar,
    .sidebar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(15, 15, 15, 0.95) !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    .glass-card:hover {
        transform: none;
    }
}

/* 3. Animated Gradient Borders - Öne Çıkanlar */
.featured-card,
.neon-border-animated {
    position: relative;
    overflow: hidden;
}

.featured-card::before,
.neon-border-animated::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00bcd4, #bc13fe, #00bcd4, #bc13fe);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: inherit;
    animation: gradientBorder 3s ease infinite;
}

.featured-card::after,
.neon-border-animated::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(15, 15, 15, 0.95);
    border-radius: inherit;
    z-index: -1;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 4. Gallery Hover Reveal */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-item .gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    color: white;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.gallery-info span {
    color: #00bcd4;
    font-size: 0.75rem;
}

/* 5. Status Pulse Indicators */
.status-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-pulse.in-progress {
    background: #f0b232;
}

.status-pulse.completed {
    background: #23a55a;
}

.status-pulse.pending {
    background: #f23f43;
}

@keyframes statusPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* 8. Minimal Footer */
.minimal-footer {
    text-align: center;
    padding: 2rem 1rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    transition: color 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.minimal-footer:hover {
    color: rgba(0, 188, 212, 0.8);
}

.minimal-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.minimal-footer a:hover {
    color: #00bcd4;
}

/* Neon Text */
.text-neon {
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

/* Masonry Grid for Gallery */
.masonry-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 640px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

/* Hide Scrollbar util */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ==========================================
   SCRATCHPAD (Hızlı Notlar) 
   ========================================== */
.scratchpad-textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    color: #e5e5e5;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.6;
    resize: none;
    width: 100%;
    min-height: 150px;
    transition: all 0.3s ease;
}

.scratchpad-textarea:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.15);
}

.scratchpad-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.scratchpad-saved {
    animation: savedPulse 0.5s ease;
}

@keyframes savedPulse {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.1);
    }

    50% {
        border-color: #00bcd4;
    }
}

/* ==========================================
   AUDIO VISUALIZER
   ========================================== */
#audio-visualizer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 40;
    pointer-events: none;
    opacity: 0.8;
}

/* ==========================================
   WEATHER WIDGET
   ========================================== */
.weather-widget {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(188, 19, 254, 0.05) 100%);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.weather-widget:hover {
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.15);
    transform: translateY(-3px);
}

.weather-temp {
    font-size: 3rem;
    font-weight: 700;
    color: #00bcd4;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.weather-icon {
    font-size: 2.5rem;
    color: #ffd93d;
    text-shadow: 0 0 15px rgba(255, 217, 61, 0.4);
}

.weather-loading {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ==========================================
   DISCORD PRESENCE WIDGET (Lanyard API)
   ========================================== */
.discord-card {
    background: linear-gradient(145deg, rgba(88, 101, 242, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 16px;
    padding: 16px;
    margin: 16px;
    transition: all 0.3s ease;
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.15);
}

.discord-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.discord-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.discord-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid #0a0a0a;
}

.discord-status-online {
    background-color: #3ba55c;
}

.discord-status-idle {
    background-color: #faa61a;
}

.discord-status-dnd {
    background-color: #ed4245;
}

.discord-status-offline {
    background-color: #747f8d;
}

.discord-username {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-activity {
    font-size: 12px;
    color: #b9bbbe;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.discord-activity-icon {
    color: #00bcd4;
    font-size: 10px;
}

.discord-spotify {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    overflow: hidden;
}

.discord-spotify-icon {
    color: #1db954;
    font-size: 12px;
    flex-shrink: 0;
}

.discord-spotify-text {
    font-size: 11px;
    color: #b9bbbe;
    white-space: nowrap;
    overflow: hidden;
}

.discord-marquee {
    display: inline-block;
    animation: marquee 12s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.discord-game {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.discord-game-icon {
    color: #00bcd4;
    font-size: 12px;
}

.discord-game-text {
    font-size: 12px;
    color: #b9bbbe;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #747f8d;
    font-size: 12px;
}

.discord-loading i {
    margin-right: 8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   PARTICLES.JS BACKGROUND
   ========================================== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    pointer-events: none;
}

/* Allow mouse interaction on particles canvas */
#particles-js canvas {
    pointer-events: auto;
}

/* ==========================================
   DIGITAL CLOCK (Fixed Position - Pixel Style)
   ========================================== */
.hero-clock-fixed {
    position: relative;
    z-index: 30;
    pointer-events: none;
    user-select: none;
    text-align: right;
    padding: 16px 24px;
    margin-bottom: -60px;
}

.hero-clock-time {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #00bcd4;
    text-shadow:
        0 0 10px rgba(0, 188, 212, 0.8),
        0 0 20px rgba(0, 188, 212, 0.5),
        0 0 30px rgba(0, 188, 212, 0.3),
        2px 2px 0 rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    line-height: 1;
}

.hero-clock-date {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(0.5rem, 1.2vw, 0.7rem);
    color: #00bcd4;
    text-shadow:
        0 0 5px rgba(0, 188, 212, 0.6),
        0 0 10px rgba(0, 188, 212, 0.3),
        1px 1px 0 rgba(0, 0, 0, 0.5);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

/* ==========================================
   NEW YEAR COUNTDOWN TIMER
   ========================================== */
.countdown-widget {
    background: linear-gradient(145deg, rgba(0, 188, 212, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 188, 212, 0.4);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 12px;
}

.countdown-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #00bcd4;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.countdown-unit {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 6px 8px;
    min-width: 36px;
}

.countdown-value {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #00bcd4;
    text-shadow: 0 0 8px rgba(0, 188, 212, 0.6);
    display: block;
}

.countdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #00bcd4;
    opacity: 0.6;
}

/* ==========================================
   SYSTEM STATUS TERMINAL WIDGET
   ========================================== */
.terminal-widget {
    background: rgba(0, 10, 0, 0.9);
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 16px;
    margin: 16px;
    font-family: 'Fira Code', 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    box-shadow:
        0 0 10px rgba(0, 255, 0, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    margin-bottom: 12px;
}

.terminal-dots {
    display: flex;
    gap: 4px;
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27ca40;
}

.terminal-title {
    color: #00ff00;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terminal-line {
    color: #00ff00;
    line-height: 1.8;
    display: flex;
}

.terminal-line.cyan {
    color: #00bcd4;
}

.terminal-prompt {
    color: #00bcd4;
    margin-right: 8px;
}

.terminal-key {
    color: #888;
    min-width: 100px;
}

.terminal-value {
    color: #00ff00;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #00ff00;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.terminal-status-online {
    color: #27ca40;
}

.terminal-status-offline {
    color: #ff5f56;
}

/* ==========================================
   CUSTOM CYBER CURSOR
   ========================================== */

/* Hide default cursor */
body,
body * {
    cursor: none !important;
}

/* SVG Arrow Cursor */
.cursor-arrow {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.05s ease-out;
}

.cursor-arrow svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 2px rgba(0, 188, 212, 0.5));
}

/* Cursor trail particle */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: #00bcd4;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.cursor-trail.fade {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

/* Click state */
.cursor-arrow.clicking {
    transform: scale(0.85);
}

/* Hover state (on interactive elements) */
.cursor-arrow.hovering {
    transform: scale(1.2);
}

/* Hidden state (when cursor leaves window) */
.cursor-arrow.hidden,
.cursor-trail.hidden {
    opacity: 0;
}

/* 3D Tilt Glare Effect */
.js-tilt-glare {
    border-radius: inherit;
}

/* 3D High-Depth Parallax for Card Inner Elements */
.glass-card {
    transform-style: preserve-3d;
}

.glass-card .tilt-inner {
    transform-style: preserve-3d;
}

.glass-card i,
.glass-card .fa-solid,
.glass-card .fa-brands {
    transform: translateZ(80px);
    transition: transform 0.3s ease;
}

.glass-card h3 {
    transform: translateZ(60px);
    transition: transform 0.3s ease;
}

.glass-card h4 {
    transform: translateZ(50px);
    transition: transform 0.3s ease;
}

.glass-card p {
    transform: translateZ(40px);
    transition: transform 0.3s ease;
}

.glass-card a,
.glass-card button {
    transform: translateZ(100px);
    transition: transform 0.3s ease;
}

/* ==========================================
   CUSTOM CONTEXT MENU
   ========================================== */
#context-menu {
    position: fixed;
    /* Ensure fixed positioning */
    z-index: 99999;
    /* Ensure it is above EVERYTHING */
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.2s;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 188, 212, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 188, 212, 0.1);
}

#context-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#context-menu button {
    color: rgba(255, 255, 255, 0.8);
}

#context-menu button:hover {
    background: #00bcd4;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
}

#context-menu li:first-child button {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

#context-menu li:last-child button {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* Close button specific hover */
#context-menu #ctx-close-btn:hover {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

/* ==========================================
   COUNTDOWN CLOCK (2026)
   ========================================== */
.countdown-clock {
    text-align: center;
    padding: 1rem;
}

.countdown-clock-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: #00bcd4;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    letter-spacing: 1px;
}

.countdown-clock-display {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #00f2ff;
    text-shadow:
        0 0 5px #00f2ff,
        0 0 10px #00f2ff,
        0 0 20px #00bcd4,
        0 0 40px #00bcd4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.countdown-digit {
    background: rgba(0, 188, 212, 0.1);
    padding: 0.5rem 0.4rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 188, 212, 0.3);
    min-width: 2.5rem;
    display: inline-block;
}

.countdown-colon {
    color: #bc13fe;
    text-shadow: 0 0 10px #bc13fe;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

.countdown-clock-labels {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.4rem;
    color: #666;
    letter-spacing: 0.5px;
}

.countdown-clock-labels span {
    min-width: 2.5rem;
    text-align: center;
}

/* ==========================================
   DISCORD STATUS COLORS
   ========================================== */
.discord-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
}

.discord-status-online {
    background-color: #23a55a;
    box-shadow: 0 0 8px #23a55a;
}

.discord-status-idle {
    background-color: #f0b232;
    box-shadow: 0 0 8px #f0b232;
}

.discord-status-dnd {
    background-color: #f23f43;
    box-shadow: 0 0 8px #f23f43;
}

.discord-status-offline {
    background-color: #80848e;
    box-shadow: none;
}

/* Discord activity icon color matching status */
.discord-activity-icon {
    transition: color 0.3s ease;
}

/* ==========================================
   MUSIC LIST ANIMATIONS
   ========================================== */
.track-item {
    transition: all 0.3s ease;
}

/* Fade out animation for removed items */
@keyframes trackFadeOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-30px);
        height: 0;
        padding: 0;
        margin: 0;
    }
}

.track-removing {
    animation: trackFadeOut 0.3s ease forwards;
    overflow: hidden;
}

/* Pulse animation for added to playlist/favorites */
@keyframes trackPulse {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: rgba(0, 242, 255, 0.2);
    }

    100% {
        background-color: transparent;
    }
}

.track-added {
    animation: trackPulse 0.5s ease;
}

/* Heart pop animation */
@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.heart-pop {
    animation: heartPop 0.3s ease;
}