/**
 * Modern & Trendy Style for Advertise.al
 * Influencer-friendly design with subtle refinements
 */

/* ============================================
   Keep it MODERN not minimal!
   ============================================ */

/* Softer shadows (not removed!) */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.06) !important;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0,0,0,0.08) !important;
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1) !important;
}

.shadow-xl {
    box-shadow: 0 20px 25px rgba(0,0,0,0.12) !important;
}

/* Smoother animations */
.transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Better hover effects */
.card-hover {
    transition: all 0.3s ease !important;
}

.card-hover:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
}

/* Gradient text for headlines */
@supports (-webkit-background-clip: text) {
    .gradient-text {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Glassmorphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Modern buttons with gradient borders */
.btn-modern {
    position: relative;
    background: white;
    color: #2563eb;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
}

/* Smooth rounded corners */
.rounded-xl {
    border-radius: 16px !important;
}

.rounded-2xl {
    border-radius: 20px !important;
}

/* Better gradients */
.bg-gradient-to-br {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Floating animation for hero elements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Modern input fields */
input:focus,
textarea:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* Stats with gradient backgrounds */
.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

/* Profile images with gradient borders */
.profile-gradient-border {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3px;
    border-radius: 50%;
}

/* Modern navigation */
nav {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

/* Feature icons with gradients */
.icon-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
}

/* Loading skeleton animation */
@keyframes skeleton {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
}

/* Modern badges */
.badge-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

/* Hover lift for all cards */
.bg-white.rounded-xl {
    transition: all 0.3s ease !important;
}

.bg-white.rounded-xl:hover {
    transform: translateY(-2px) !important;
}

/* Modern tooltips */
.tooltip {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Notification dot animation */
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.notification-dot {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}