/* Main Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Click Button Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 135, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 94, 135, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 94, 135, 0);
    }
}

#click-button {
    animation: pulse 2s infinite;
}

/* Particle Effects */
.particle {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.8;
}

/* Notification Styles */
.notification {
    background-color: #2D2D3F;
    border-left: 4px solid #FF5E87;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out forwards;
    opacity: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification.hide {
    animation: slideOut 0.3s ease-in forwards;
}

/* Freeze Timer Styles */
#freeze-timer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 10;
}

/* Profile Styles */
.reward-item {
    background: linear-gradient(135deg, #2D2D3F, #1E1E2E);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 3px solid #8C5EFF;
    transition: all 0.3s ease;
}

.reward-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reward-badge {
    background: linear-gradient(90deg, #FF5E87, #8C5EFF);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}
