/**
 * PREMIUM DESIGN SYSTEM
 * Modern, vibrant, and stunning visual design
 * Created with glassmorphism, gradients, and animations
 */

/* ==========================================
   IMPORT PREMIUM FONTS
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS VARIABLES - PREMIUM COLOR SYSTEM
   ========================================== */
:root {
    /* Primary Gradient */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-gradient-hover: linear-gradient(135deg, #5568d3 0%, #653d8f 100%);

    /* Accent Gradients */
    --accent-gradient-1: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient-2: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --accent-gradient-3: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --accent-gradient-4: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --accent-gradient-5: linear-gradient(135deg, #30cfd0 0%, #330867 100%);

    /* Glassmorphism Colors */
    --glass-white: rgba(255, 255, 255, 0.15);
    --glass-dark: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.18);

    /* Premium Colors */
    --color-primary: #667eea;
    --color-primary-dark: #5568d3;
    --color-secondary: #764ba2;
    --color-accent: #f5576c;
    --color-success: #43e97b;
    --color-warning: #fee140;
    --color-danger: #f5576c;
    --color-info: #4facfe;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-dark: #0f172a;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.5);
    --shadow-glow-accent: 0 0 30px rgba(245, 87, 108, 0.5);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==========================================
   GLOBAL RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    color: var(--color-gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
}

a:hover {
    color: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* ==========================================
   GLASSMORPHISM CONTAINERS
   ========================================== */
.glass-container {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.glass-container:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-2px);
}

/* ==========================================
   PREMIUM HEADER
   ========================================== */
section#header {
    margin: 0;
    padding: 1.5rem 0;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: none;
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section#header .logo img {
    max-height: 60px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: all var(--transition-base);
}

section#header .logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

section#header .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
}

section#header .logo-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
}

/* Top Navigation */
section#header .top-nav {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

section#header .top-nav li {
    position: relative;
}

section#header .top-nav li a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all var(--transition-base);
    display: inline-block;
}

section#header .top-nav li a:hover {
    background: var(--glass-white);
    transform: translateY(-2px);
}

section#header .top-nav li.primary-action a.btn {
    background: var(--primary-gradient);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

section#header .top-nav li.primary-action a.btn:hover {
    background: var(--primary-gradient-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px) scale(1.05);
}

/* ==========================================
   MAIN MENU WITH GLASSMORPHISM
   ========================================== */
section#main-menu {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 90px;
    z-index: 999;
}

.navbar-main {
    background: transparent !important;
    border: none;
    margin-bottom: 0;
}

.navbar-main .navbar-nav>li>a {
    color: white;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 1rem 1.25rem;
    transition: all var(--transition-base);
    position: relative;
}

.navbar-main .navbar-nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.navbar-main .navbar-nav>li>a:hover::after,
.navbar-main .navbar-nav>li.active>a::after {
    width: 80%;
}

.navbar-main .navbar-nav>li>a:hover {
    background: var(--glass-white);
    transform: translateY(-2px);
}

/* Dropdown Menus */
.navbar-main .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    margin-top: 0.5rem;
    animation: dropdownSlide 0.3s ease-out;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-main .dropdown-menu>li>a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-weight: 500;
}

.navbar-main .dropdown-menu>li>a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateX(5px);
}

/* ==========================================
   HOME BANNER - STUNNING HERO SECTION
   ========================================== */
section#home-banner {
    margin: 0;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 50%, rgba(240, 147, 251, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

section#home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: bannerFloat 15s ease-in-out infinite;
}

@keyframes bannerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

section#home-banner h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section#home-banner .form-control {
    padding: 1.25rem 1.5rem;
    border: none;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    font-size: 1.125rem;
    background: white;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

section#home-banner .form-control:focus {
    outline: none;
    box-shadow: var(--shadow-2xl);
    transform: translateY(-2px);
}

section#home-banner .btn {
    padding: 1.25rem 2.5rem;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

section#home-banner .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

section#home-banner .btn:hover::before {
    width: 300px;
    height: 300px;
}

section#home-banner .btn.search {
    background: var(--accent-gradient-3);
    box-shadow: var(--shadow-lg);
}

section#home-banner .btn.search:hover {
    box-shadow: 0 0 30px rgba(67, 233, 123, 0.5);
    transform: translateY(-2px) scale(1.05);
}

section#home-banner .btn.transfer {
    background: var(--accent-gradient-1);
    box-shadow: var(--shadow-lg);
}

section#home-banner .btn.transfer:hover {
    box-shadow: 0 0 30px rgba(245, 87, 108, 0.5);
    transform: translateY(-2px) scale(1.05);
}

/* ==========================================
   HOME SHORTCUTS - MODERN CARDS
   ========================================== */
.home-shortcuts {
    margin: 0;
    padding: 0;
    background: transparent;
}

.home-shortcuts .container {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.home-shortcuts ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.home-shortcuts li {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.home-shortcuts li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.home-shortcuts li:hover::before {
    opacity: 0.1;
}

.home-shortcuts li:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.4);
}

.home-shortcuts li a {
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.home-shortcuts li i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    transition: all var(--transition-base);
}

.home-shortcuts li:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.home-shortcuts li p {
    font-weight: 600;
    font-size: 1.125rem;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-shortcuts li span {
    display: inline-block;
    margin-left: 0.5rem;
    transition: all var(--transition-base);
}

.home-shortcuts li:hover span {
    transform: translateX(5px);
}

/* ==========================================
   MAIN BODY SECTION
   ========================================== */
section#main-body {
    padding: 3rem 0;
    min-height: 500px;
    background: transparent;
    position: relative;
    z-index: 1;
}

section#main-body .container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-2xl);
}

/* ==========================================
   PANELS & CARDS
   ========================================== */
.panel {
    background: white;
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    overflow: hidden;
}

.panel:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.panel-heading {
    background: var(--primary-gradient);
    color: white;
    padding: 1.25rem 1.5rem;
    border-bottom: none;
    font-weight: 600;
}

.panel-body {
    padding: 1.5rem;
}

.panel-footer {
    background: var(--color-gray-100);
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

/* ==========================================
   BUTTONS - PREMIUM STYLES
   ========================================== */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px) scale(1.05);
}

.btn-success {
    background: var(--accent-gradient-3);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    box-shadow: 0 0 30px rgba(67, 233, 123, 0.5);
    transform: translateY(-2px) scale(1.05);
}

.btn-danger {
    background: var(--accent-gradient-1);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-danger:hover {
    box-shadow: var(--shadow-glow-accent);
    transform: translateY(-2px) scale(1.05);
}

.btn-info {
    background: var(--accent-gradient-2);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-info:hover {
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.5);
    transform: translateY(-2px) scale(1.05);
}

.btn-warning {
    background: var(--accent-gradient-4);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-warning:hover {
    box-shadow: 0 0 30px rgba(254, 225, 64, 0.5);
    transform: translateY(-2px) scale(1.05);
}

/* ==========================================
   FORMS - MODERN INPUT STYLES
   ========================================== */
.form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
    display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
section#footer {
    margin: 0;
    padding: 2rem 1rem;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--glass-border);
    color: white;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-lg);
}

section#footer a {
    color: white;
    transition: all var(--transition-base);
}

section#footer a:hover {
    color: var(--color-accent);
    transform: translateX(3px);
}

/* ==========================================
   NOTIFICATIONS & ALERTS
   ========================================== */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-md);
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.alert-info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.alert-warning {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

/* ==========================================
   LOADING ANIMATIONS
   ========================================== */
.loading-spinner {
    border: 4px solid var(--color-gray-200);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section#home-banner h2 {
        font-size: 2.5rem;
    }

    .home-shortcuts ul {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section#home-banner {
        padding: 4rem 0;
    }

    section#home-banner h2 {
        font-size: 2rem;
    }

    .home-shortcuts ul {
        grid-template-columns: 1fr;
    }

    section#header .top-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-2xl {
    border-radius: var(--radius-2xl);
}

.transition-base {
    transition: all var(--transition-base);
}

/* Hover Effects */
.hover-lift {
    transition: all var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

/* ==========================================
   MICRO-ANIMATIONS
   ========================================== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* ==========================================
   PREMIUM SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    border: 2px solid var(--color-gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient-hover);
}

/* ==========================================
   SELECTION STYLING
   ========================================== */
::selection {
    background: var(--color-primary);
    color: white;
}

::-moz-selection {
    background: var(--color-primary);
    color: white;
}