/**
 * DUARA Social Crowdfunding Platform - Enhanced Stylesheet
 * @author MiniMax Agent
 * @version 2.0
 * @created 2025-10-11
 */

/* ==== CSS Variables ==== */
:root {
    --primary-color: #9d4edd;
    --primary-light: #c77dff;
    --primary-dark: #7b2cbf;
    --secondary-color: #52b788;
    --secondary-light: #74c69d;
    --secondary-dark: #40916c;
    --success-color: #52b788;
    --danger-color: #e63946;
    --warning-color: #f77f00;
    --info-color: #457b9d;
    --light-color: #f8f9fa;
    --light-purple: #f3e8ff;
    --light-green: #e8f5e8;
    --dark-color: #212529;
    --text-color: #374151;
    --text-muted: #6b7280;
    --border-color: #d1d5db;
    --border-color-light: #e5e7eb;
    --border-color-dark: #9ca3af;
    --background-color: #ffffff;
    --background-gray: #f9fafb;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --border-radius: 0.75rem;
    --border-radius-sm: 0.5rem;
    --border-radius-lg: 1rem;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --gradient-hero: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

/* ==== Google Fonts Import ==== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==== Global Styles ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-size: 16px;
}

.main-content {
    min-height: calc(100vh - 120px);
    padding-bottom: 2rem;
}

/* ==== Enhanced Typography ==== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: #64748b;
}

/* ==== Navigation ==== */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background: rgba(157, 78, 221, 0.9) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: var(--transition);
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-sm);
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

/* ==== Hero Section ==== */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1,
.hero-section p,
.hero-section .lead {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-section .fs-5 {
    font-size: 1.125rem !important;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* ==== Enhanced Cards ==== */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: white;
}

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

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* ==== Statistics Cards ==== */
.stats-section {
    padding: 4rem 0;
    background: white;
}

.stats-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition);
}

.stats-card:hover {
    transform: translateY(-6px);
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stats-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ==== How It Works Section ==== */
.how-it-works {
    padding: 5rem 0;
    background: #f8fafc;
}

.step-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

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

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

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

/* ==== Member Levels Section ==== */
.member-levels {
    padding: 5rem 0;
    background: white;
}

.level-card {
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    background: white;
    border: 2px solid #e2e8f0;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.level-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.level-amount {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.level-benefits {
    list-style: none;
    padding: 0;
}

.level-benefits li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.level-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* ==== Buttons ==== */
.btn {
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(157, 78, 221, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(157, 78, 221, 0.5);
    color: white;
}

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

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

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

/* ==== Footer Improvements ==== */
footer {
    background: #1a202c !important;
    padding: 3rem 0 1.5rem !important;
    margin-top: 3rem !important;
    border-top: 4px solid var(--primary-color);
}

footer h5, footer h6 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer p, footer .text-muted {
    color: #a0aec0 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: var(--transition);
}

footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a:hover {
    color: var(--primary-light) !important;
}

footer .stats-widget {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

footer .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

footer .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ==== Admin Panel Styles ==== */
.admin-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem 0;
    margin-bottom: 3rem;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.admin-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.admin-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.admin-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

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

.stat-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
    height: 100%;
}

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

.stat-card.primary {
    border-left-color: var(--primary-color);
}

.stat-card.success {
    border-left-color: var(--success-color);
}

.stat-card.info {
    border-left-color: var(--info-color);
}

.stat-card.warning {
    border-left-color: var(--warning-color);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.3;
}

/* ==== Recent Activity ==== */
.activity-item {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background: #f8fafc;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.activity-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.activity-time {
    font-size: 0.875rem;
    color: #64748b;
}

/* ==== Forms ==== */
.form-control {
    border-radius: var(--border-radius-sm);
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
    outline: none;
}

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

/* ==== Login Page ==== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: 2rem 0;
}

.login-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #64748b;
    margin-bottom: 0;
}

/* ==== Error Messages ==== */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border-left: 4px solid #16a34a;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

/* ==== Responsive Design ==== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .step-card, .level-card {
        margin-bottom: 2rem;
    }
    
    footer {
        padding: 2rem 0 1rem !important;
    }
    
    .admin-title {
        font-size: 2rem;
    }
    
    .login-card {
        margin: 1rem;
        padding: 2rem;
    }
}

/* ==== Animations ==== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ==== Utilities ==== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gradient-text-light {
    background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-padding {
    padding: 5rem 0;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ==== Loading Spinner ==== */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==== Print Styles ==== */
@media print {
    .navbar,
    .sidebar,
    .btn,
    footer,
    .social-share-buttons {
        display: none !important;
    }
    
    .main-content {
        margin: 0 !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
}

/* ==== Accessibility ==== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ==== High Contrast Mode ==== */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid #000;
    }
    
    .btn {
        border: 2px solid #000;
    }
}

/* ==== Reduced Motion ==== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==== View Comments Functionality ==== */
.view-comments {
    cursor: pointer;
    transition: var(--transition);
}

.view-comments:hover {
    opacity: 0.8;
}

/* Highlight animation for comments section */
.highlight-section {
    animation: highlight-glow 2s ease-out;
}

@keyframes highlight-glow {
    0% {
        box-shadow: 0 0 0 rgba(82, 183, 136, 0.3);
        background-color: rgba(82, 183, 136, 0.05);
    }
    50% {
        box-shadow: 0 0 20px rgba(82, 183, 136, 0.4);
        background-color: rgba(82, 183, 136, 0.1);
    }
    100% {
        box-shadow: 0 0 0 rgba(82, 183, 136, 0.3);
        background-color: transparent;
    }
}

/* ==== Mention Functionality Styles ==== */
.cursor-pointer {
    cursor: pointer;
}

.mention-user-item {
    transition: var(--transition);
}

.mention-user-item:hover {
    background-color: var(--light-purple) !important;
    border-color: var(--primary-light) !important;
    transform: translateY(-1px);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: var(--border-color-dark);
}

/* ==== Notification Dropdown Styles ==== */
.notification-dropdown {
    max-width: 350px !important;
    border: none;
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--border-radius);
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color-light);
    transition: var(--transition);
    cursor: pointer;
    background: var(--background-color);
}

.notification-item:hover {
    background: var(--background-gray);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item.unread {
    background: var(--light-purple);
    border-left: 3px solid var(--primary-color);
}

.notification-item.unread:hover {
    background: var(--light-color);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.notification-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
    line-height: 1.3;
}

.notification-message {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.notification-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.notification-type-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    background: var(--info-color);
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

.notification-type-badge.tag {
    background: var(--primary-color);
}

.notification-type-badge.comment {
    background: var(--secondary-color);
}

.notification-type-badge.reply {
    background: var(--info-color);
}

.notification-type-badge.distress_approved {
    background: var(--success-color);
}

/* Custom scrollbar for notification list */
.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.notification-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.notification-list::-webkit-scrollbar-thumb:hover {
    background: var(--border-color-dark);
}

/* Notification badge */
.notification-badge {
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Empty state styling */
.notification-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

.notification-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .notification-dropdown {
        max-width: 320px !important;
        margin-right: 10px;
    }
    
    .notification-list {
        max-height: 350px;
    }
    
    .notification-item {
        padding: 10px 12px;
    }
    
    .notification-avatar {
        width: 32px;
        height: 32px;
    }
}

/* ==== Featured Partners Marquee Styles ==== */
.partners-section {
    position: relative;
    overflow: hidden;
}

.partners-marquee-container {
    position: relative;
    overflow: hidden;
    height: 80px;
    display: flex;
    align-items: center;
}

.partners-marquee {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll-marquee 40s linear infinite;
    padding: 0 20px;
}

.partners-marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.partner-logo-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.partner-logo {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.8);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.partner-logo-link:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-marquee {
        gap: 30px;
        animation-duration: 60s;
    }
    
    .partner-logo {
        max-width: 100px;
        max-height: 40px;
    }
    
    .partner-logo-link {
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .partners-marquee {
        gap: 20px;
        animation-duration: 80s;
    }
    
    .partner-logo {
        max-width: 80px;
        max-height: 35px;
    }
    
    .partner-logo-link {
        padding: 6px 10px;
    }
}