/* Affilinko.com — Brand Aesthetic (AffNinja Style) */

:root {
    --primary: #FF5E14;
    --primary-hover: #E64B00;
    --secondary: #0F172A;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Typography */
body { font-family: 'Inter', sans-serif; background-color: var(--bg-light); color: var(--text-dark); }

/* Buttons */
.btn-orange {
    background: #FF5E14;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-orange:hover {
    background: #E64B00;
}
.btn-transparent {
    background: transparent;
    border: 1px solid white;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-transparent:hover {
    background: rgba(255,255,255,0.1);
}

/* Cards */
.card-ninja {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.card-ninja:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transform: translateY(-4px);
}

/* Hero Section */
.hero-gradient {
    background-color: #000000;
    background-image: radial-gradient(circle at center, #1E293B 0%, #000000 60%);
}

/* Line clamp utilities */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-hover); }

/* Neon Glow Effect */
.neon-hover { transition: all 0.4s ease; }
.neon-hover:hover {
    box-shadow: 0 0 20px rgba(255, 94, 20, 0.4);
    filter: drop-shadow(0 0 10px rgba(255, 94, 20, 0.2));
}

/* Shimmer animation */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

