/* =====================================================
   KARIRUP.LINK V4 - MODERN UI DESIGN SYSTEM
   CSS Variables & Modern Styling
   ===================================================== */

/* -----------------------------------------------------
   1. CSS VARIABLES (Design Tokens)
   ----------------------------------------------------- */
:root {
    /* Primary Palette - Deep Indigo & Purple */
    --primary-color: #4F46E5;
    --primary-light: #818CF8;
    --primary-dark: #3730A3;
    --primary-gradient: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #2563EB 100%);

    /* Secondary & Accent Colors */
    --secondary-color: #EC4899;
    --accent-color: #F59E0B;
    --success-color: #10B981;
    --success-light: rgba(16, 185, 129, 0.1);
    --warning-color: #F59E0B;
    --warning-light: rgba(245, 158, 11, 0.1);
    --danger-color: #EF4444;
    --danger-light: rgba(239, 68, 68, 0.1);
    --info-color: #06B6D4;
    --info-light: rgba(6, 182, 212, 0.1);

    /* Neutral Colors */
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --bg-primary: #FAFBFC;
    --bg-secondary: #F3F4F6;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 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-glow: 0 0 20px rgba(79, 70, 229, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* -----------------------------------------------------
   2. BASE STYLES
   ----------------------------------------------------- */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Selection Color */
::selection {
    background: rgba(79, 70, 229, 0.2);
    color: var(--primary-dark);
}

/* -----------------------------------------------------
   3. TYPOGRAPHY
   ----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -----------------------------------------------------
   4. NAVBAR
   ----------------------------------------------------- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(79, 70, 229, 0.05);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(79, 70, 229, 0.1);
}

/* -----------------------------------------------------
   5. BUTTONS
   ----------------------------------------------------- */
.btn {
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(79, 70, 229, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
}

/* -----------------------------------------------------
   6. CARDS
   ----------------------------------------------------- */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-body {
    padding: 1.5rem;
}

/* Gig Card */
.gig-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.gig-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gig-image {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}

/* Gig Card Modern (for gigs.php) */
.gig-card-modern {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.gig-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gig-image-wrapper {
    position: relative;
    overflow: hidden;
}

.gig-image-wrapper .gig-image {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    transition: transform var(--transition-normal);
}

.gig-card-modern:hover .gig-image {
    transform: scale(1.05);
}

.gig-category-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.gig-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Project Card (for projects.php) */
.project-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.project-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.project-card .hover-primary:hover {
    color: var(--primary-color) !important;
}

.bg-soft-primary {
    background: rgba(79, 70, 229, 0.1);
}

.bg-soft-success {
    background: rgba(16, 185, 129, 0.1);
}

.bg-soft-warning {
    background: rgba(245, 158, 11, 0.1);
}

/* -----------------------------------------------------
   7. FORMS
   ----------------------------------------------------- */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* -----------------------------------------------------
   8. BADGES
   ----------------------------------------------------- */
.badge {
    font-weight: 600;
    padding: 0.5em 0.75em;
    border-radius: var(--radius-sm);
}

/* -----------------------------------------------------
   9. FOOTER
   ----------------------------------------------------- */
.footer-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    margin-top: auto;
}

.footer-brand img {
    height: 40px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

/* -----------------------------------------------------
   10. HERO SECTION
   ----------------------------------------------------- */
.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Page Hero (for gigs.php, projects.php) */
.page-hero {
    background: var(--primary-gradient);
    color: white;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 1rem auto 0;
}

.hero-search {
    max-width: 700px;
    margin: 2rem auto 0;
}

.hero-search .input-group {
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-stat {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
}

/* -----------------------------------------------------
   11. SEARCH BOX
   ----------------------------------------------------- */
.search-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    border: none;
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    box-shadow: none;
}

.search-box button {
    border-radius: var(--radius-lg);
    padding: 0.75rem 2rem;
}

/* -----------------------------------------------------
   12. CATEGORY CARDS
   ----------------------------------------------------- */
.category-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: white;
}

/* -----------------------------------------------------
   13. STATS SECTION
   ----------------------------------------------------- */
.stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* -----------------------------------------------------
   14. HOW IT WORKS
   ----------------------------------------------------- */
.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* -----------------------------------------------------
   15. ANIMATIONS
   ----------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* -----------------------------------------------------
   16. UTILITIES
   ----------------------------------------------------- */
.rounded-4 {
    border-radius: var(--radius-lg) !important;
}

.rounded-5 {
    border-radius: var(--radius-xl) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* -----------------------------------------------------
   17. RESPONSIVE
   ----------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 3rem 0 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-hero {
        padding: 2.5rem 0 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stat {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box button {
        width: 100%;
    }
}

/* -----------------------------------------------------
   18. TESTIMONIALS
   ----------------------------------------------------- */
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* -----------------------------------------------------
   19. LANGUAGE SWITCHER
   ----------------------------------------------------- */
.lang-switcher .dropdown-menu {
    min-width: 120px;
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
}

.lang-switcher .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.lang-switcher .dropdown-item.active {
    background: var(--primary-color);
    color: white;
}

/* -----------------------------------------------------
   20. DROPDOWN MENU
   ----------------------------------------------------- */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.625rem 1rem;
}

.dropdown-item:hover {
    background: rgba(79, 70, 229, 0.05);
    color: var(--primary-color);
}

/* -----------------------------------------------------
   21. NOTIFICATION BADGE
   ----------------------------------------------------- */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-full);
}

/* -----------------------------------------------------
   22. DASHBOARD SIDEBAR
   ----------------------------------------------------- */
.dashboard-sidebar {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}

.sidebar-profile {
    padding: 1rem;
    text-align: center;
}

.sidebar-profile img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.sidebar-profile h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.sidebar-profile .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.sidebar-nav .nav-item:hover {
    background: rgba(79, 70, 229, 0.05);
    color: var(--primary-color);
}

.sidebar-nav .nav-item.active {
    background: var(--primary-gradient);
    color: white;
}

.sidebar-nav .nav-item i {
    font-size: 1.1rem;
}

.nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.75rem 0;
}

/* -----------------------------------------------------
   23. FILTER SIDEBAR (for gigs/projects pages)
   ----------------------------------------------------- */
.filter-sidebar {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.filter-sidebar h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

/* -----------------------------------------------------
   24. EMPTY STATE
   ----------------------------------------------------- */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--text-muted);
}

/* -----------------------------------------------------
   25. DASHBOARD LAYOUT
   ----------------------------------------------------- */
.dashboard-container {
    padding: 2rem 0;
}

.dashboard-wrapper {
    min-height: calc(100vh - 200px);
}

/* Stat Cards Mini */
.stat-card-mini {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    transition: all var(--transition-fast);
}

.stat-card-mini:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-icon-sm {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-value.small {
    font-size: 1rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Content Cards */
.content-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.content-card-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-card-body {
    padding: 1.25rem;
}

/* Quick Action Cards */
.quick-action-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.quick-action-card:hover {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.02);
    color: var(--primary-color);
}

.quick-action-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* Tables */
.table th {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.btn-xs {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 991px) {
    .dashboard-sidebar {
        margin-bottom: 1rem;
    }
    .stat-value {
        font-size: 1.1rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 767px) {
    .dashboard-container {
        padding: 0 0.5rem;
    }
    .content-card-header {
        padding: 0.875rem 1rem;
    }
    .content-card-body {
        padding: 0.75rem;
    }
    .table {
        font-size: 0.85rem;
    }
}

/* -----------------------------------------------------
   26. FOOTER V4 STYLES
   ----------------------------------------------------- */
.footer-modern {
    background: #1a1a2e !important;
}

.footer-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: #4F46E5;
    color: #fff;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
}
