/* ===================================
   LootLink - Минималистичный дизайн
   =================================== */

/* ========== CSS Variables ========== */
:root {
    /* Colors */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary: #64748b;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --dark: #1e293b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --text: #334155;
    --text-light: #64748b;
    
    /* Spacing */
    --gap: 1.5rem;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;
}

main {
    flex: 1;
    padding: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ========== Navbar - Современный ========== */
.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a !important;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.navbar-brand:hover {
    opacity: 0.85;
}

/* Animated Logo */
.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.logo-circle,
.logo-path {
    animation: none;
}

.logo-text {
    font-weight: 700;
    color: var(--dark);
}

.nav-link {
    color: #374151 !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    margin: 0 0.125rem;
    border-radius: 8px;
    transition: all 0.15s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb !important;
    background: #f8fafc;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: #2563eb;
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Колокольчик уведомлений - современный */
.nav-link .bi-bell {
    color: #6b7280;
    font-size: 1.25rem;
    transition: all 0.15s ease;
}

.nav-link:hover .bi-bell {
    color: #2563eb;
}

.nav-link .badge.bg-danger {
    background: #ef4444 !important;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.425rem;
    min-width: 18px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--light);
}

/* ========== Buttons ========== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: all 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

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

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

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #047857;
    color: white;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #b91c1c;
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: white;
}

.btn-warning:hover {
    background: #b45309;
    color: white;
}

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

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

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.btn-light {
    background: white;
    color: var(--primary);
}

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

/* ========== Cards ========== */
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.card-header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem;
}

.card-body {
    padding: 1.25rem;
}

.card-footer {
    background: var(--light);
    border-top: 1px solid var(--border);
    padding: 1rem 1.25rem;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* ========== Listings Grid ========== */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.listing-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.listing-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.listing-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.listing-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--light);
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.listing-item:hover .listing-image img {
    transform: scale(1.08);
}

.listing-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.25rem;
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #ef4444;
}

.favorite-btn i {
    pointer-events: none;
}

.listing-content {
    padding: 1.25rem;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}

.seller-name {
    color: var(--text-light);
    font-weight: 500;
}

.listing-date {
    color: var(--text-light);
}

.listing-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.listing-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success);
}

.listing-action {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.listing-item:hover .listing-action {
    gap: 0.5rem;
}

/* ========== Badges ========== */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

/* ========== Status Badges ========== */
.status-active {
    background-color: #dcfce7;
    color: #15803d;
}

.status-reserved {
    background-color: #fef3c7;
    color: #a16207;
}

.status-sold {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-pending {
    background-color: #dbeafe;
    color: #1e40af;
}

.status-accepted {
    background-color: #dcfce7;
    color: #15803d;
}

.status-completed {
    background-color: #e0e7ff;
    color: #4338ca;
}

.status-cancelled, .status-rejected {
    background-color: #f3f4f6;
    color: #6b7280;
}

/* ========== Page Header ========== */
.page-header {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.page-header .lead,
.page-header .text-muted {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ========== Search Section ========== */
.search-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 3rem;
}

.search-form .form-label {
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* ========== Forms ========== */
.filter-form {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* ========== Profile ========== */
.profile-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========== Rating ========== */
.rating-stars {
    color: #fbbf24;
}

.rating-value {
    font-weight: 700;
    color: var(--dark);
}

/* ========== Chat ========== */
.chat-container {
    height: 60vh;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.messages-list {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--light);
}

.message-bubble {
    max-width: 70%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.message-bubble.sent {
    background: var(--primary);
    color: white;
    margin-left: auto;
}

.message-bubble.received {
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* ========== Alerts ========== */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.alert-success {
    background-color: #dcfce7;
    color: #15803d;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
}

.alert-warning {
    background-color: #fef3c7;
    color: #a16207;
}

/* ========== Footer ========== */
/* ========== Footer - Современный минималистичный ========== */
footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid #334155;
}

footer h5, footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

footer .text-muted {
    color: #94a3b8 !important;
    font-size: 0.9375rem;
    line-height: 1.6;
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.15s ease;
    display: inline-block;
    padding: 0.25rem 0;
    font-size: 0.9375rem;
}

footer a:hover {
    color: #2563eb;
    transform: translateX(3px);
}

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

footer hr {
    border-color: #334155 !important;
    opacity: 0.3;
    margin: 2rem 0 1.5rem 0;
}

footer .text-center small {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ========== Pagination ========== */
.pagination {
    margin-top: 2rem;
}

.page-link {
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin: 0 0.25rem;
    font-weight: 500;
    transition: all 0.2s;
}

.page-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ========== Empty State ========== */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--border);
}

.empty-state h4 {
    color: var(--text-light);
    margin-top: 1rem;
}

/* ========== Utility Classes ========== */
.text-muted {
    color: var(--text-light) !important;
}

/* ========== Landing Page ========== */
.hero-landing {
    padding: 3rem 0;
    background: #f8fafc;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-image-placeholder {
    background: white;
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px solid var(--border);
}

.hero-image-placeholder i {
    font-size: 8rem;
    color: var(--border);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
}

/* Latest Listings Section */
.latest-listings-section {
    padding: 4rem 0;
    background: var(--light);
}

/* Games Section */
.games-section {
    padding: 4rem 0;
    background: white;
}

.game-card {
    display: block;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.game-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.game-icon-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.game-icon-placeholder i {
    font-size: 1.75rem;
    color: var(--primary);
}

.game-name {
    font-weight: 600;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--primary);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ========== Responsive ========== */

/* Tablet и маленькие ноутбуки (до 992px) */
@media (max-width: 992px) {
    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .hero-image-placeholder {
        margin-top: 2rem;
    }
    
    .profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .seller-stats {
        flex-wrap: wrap;
    }
}

/* Планшеты (до 768px) */
@media (max-width: 768px) {
    /* Типография */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .listing-detail-title {
        font-size: 1.5rem;
    }
    
    .listing-detail-price {
        font-size: 2rem;
    }
    
    /* Кнопки и действия */
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Статистика */
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    /* Карточки */
    .card-img-top {
        height: 180px;
    }
    
    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    /* Профиль */
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile-username {
        font-size: 1.5rem;
    }
    
    /* Футер */
    footer .col-md-4 {
        margin-bottom: 2rem;
    }
    
    /* Формы */
    .filter-form {
        padding: 1rem;
    }
    
    .search-section {
        padding: 1.5rem;
    }
    
    /* Чат */
    .messages-container {
        height: 400px;
    }
    
    .message-bubble {
        max-width: 85%;
    }
    
    /* Транзакции */
    .listing-preview-card,
    .transaction-listing-card {
        flex-direction: column;
    }
    
    .listing-preview-image {
        width: 100%;
        height: 150px;
    }
    
    .request-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .request-timeline::before {
        display: none;
    }
    
    .timeline-step {
        display: flex;
        gap: 1rem;
        text-align: left;
    }
    
    .timeline-icon {
        flex-shrink: 0;
    }
}

/* Мобильные устройства (до 576px) */
@media (max-width: 576px) {
    /* Общие отступы */
    main {
        padding: 1rem 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .logo-svg {
        width: 28px;
        height: 28px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    /* Типография */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    
    /* Кнопки */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    /* Сетка объявлений */
    .listings-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .listing-image {
        aspect-ratio: 16/9;
    }
    
    .listing-content {
        padding: 1rem;
    }
    
    .listing-title {
        font-size: 1rem;
    }
    
    .listing-price {
        font-size: 1.25rem;
    }
    
    /* Детальная страница объявления */
    .listing-detail-title {
        font-size: 1.25rem;
    }
    
    .listing-detail-price {
        font-size: 1.75rem;
    }
    
    .listing-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .listing-detail-content {
        padding: 1.5rem;
    }
    
    /* Карточки */
    .card {
        border-radius: 8px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    /* Профиль */
    .profile-avatar,
    .profile-avatar-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .profile-username {
        font-size: 1.25rem;
    }
    
    .profile-main-card,
    .profile-stats-card,
    .profile-reviews-section {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .profile-contacts {
        flex-direction: column;
    }
    
    .contact-badge {
        text-align: center;
    }
    
    /* Продавец */
    .seller-card {
        padding: 1rem;
    }
    
    .seller-avatar img,
    .seller-avatar-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .seller-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Формы */
    .auth-container {
        margin: 1rem 0;
    }
    
    .auth-form {
        padding: 2rem 1.5rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .auth-info {
        padding: 2rem 1.5rem;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .filter-form,
    .search-section {
        padding: 1rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* Чат */
    .chat-header-card {
        padding: 1rem;
    }
    
    .chat-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .chat-messages-card {
        border-radius: 8px;
    }
    
    .messages-container {
        height: 350px;
        padding: 1rem;
    }
    
    .message-bubble {
        max-width: 90%;
        padding: 0.75rem 1rem;
    }
    
    .message-form-container {
        padding: 1rem;
    }
    
    .conversation-item {
        padding: 1rem;
    }
    
    .conversation-avatar img,
    .avatar-placeholder {
        width: 50px;
        height: 50px;
    }
    
    /* Транзакции */
    .request-status-card,
    .participants-card {
        padding: 1.5rem;
    }
    
    .listing-preview-card,
    .transaction-listing-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .listing-preview-title {
        font-size: 1.125rem;
    }
    
    .listing-preview-price {
        font-size: 1.5rem;
    }
    
    /* Футер */
    footer {
        padding: 2rem 0;
        margin-top: 2rem;
    }
    
    footer .row {
        text-align: center;
    }
    
    footer .col-md-4 {
        margin-bottom: 1.5rem;
    }
    
    /* Hero */
    .hero-landing {
        padding: 3rem 0;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    /* Игры */
    .game-card {
        padding: 1rem;
    }
    
    .game-icon-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .game-icon-placeholder i {
        font-size: 1.25rem;
    }
    
    /* Фичи */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    /* Разное */
    .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.6875rem;
    }
    
    .empty-state {
        padding: 2rem 1rem;
    }
    
    .empty-state i {
        font-size: 3rem;
    }
    
    /* Toast уведомления */
    #toast-container {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
    }
    
    .toast {
        min-width: 100%;
        max-width: 100%;
    }
    
    /* Контент страницы */
    .content-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-box-value {
        font-size: 2rem;
    }
}

/* Очень маленькие экраны (до 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .listing-detail-price {
        font-size: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    .logo-svg {
        width: 24px;
        height: 24px;
    }
}

/* ========== Profile Page ========== */
.profile-header {
    margin-bottom: 3rem;
}

.profile-main-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.profile-info {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.profile-avatar-wrapper {
    flex-shrink: 0;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--border);
}

.profile-avatar-placeholder {
    width: 120px;
    height: 120px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border);
}

.profile-avatar-placeholder i {
    font-size: 3rem;
    color: var(--text-light);
}

.profile-details {
    flex: 1;
}

.profile-username {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-fullname {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.profile-rating {
    margin-bottom: 1rem;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.875rem;
}

.profile-bio {
    color: var(--text);
    line-height: 1.6;
    margin: 1rem 0;
}

.profile-contacts {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-badge {
    padding: 0.5rem 1rem;
    background: var(--light);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.profile-stats-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
}

.stats-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

/* Reviews Section */
.profile-reviews-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.reviews-count {
    color: var(--text-light);
    font-weight: 400;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.reviewer-link {
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.reviewer-link:hover {
    color: var(--primary);
}

.review-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.review-rating {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.review-comment {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.empty-reviews {
    text-align: center;
    padding: 3rem 1rem;
}

/* ========== Auth Pages ========== */
.auth-container {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin: 3rem 0;
}

.auth-form {
    padding: 3rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.auth-info {
    background: var(--primary);
    color: white;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.info-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.info-list i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-stats {
    margin-top: 2rem;
}

.info-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.info-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-stat-icon i {
    font-size: 1.5rem;
}

.info-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.info-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ========== Listing Detail Page ========== */
.listing-detail-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.listing-game-badge {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

.listing-detail-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--light);
}

.listing-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-detail-content {
    padding: 2rem;
}

.listing-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.listing-detail-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.listing-detail-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.875rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.listing-detail-description h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.listing-detail-description p {
    color: var(--text);
    line-height: 1.8;
    white-space: pre-line;
}

/* Seller Card */
.seller-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.seller-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.seller-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.seller-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.seller-avatar-placeholder {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seller-avatar-placeholder i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.seller-details {
    flex: 1;
}

.seller-username a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
}

.seller-username a:hover {
    color: var(--primary);
}

.seller-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.seller-stats {
    display: flex;
    gap: 1rem;
}

.seller-stat {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
}

.seller-stat .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.seller-stat .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

/* Actions Card */
.actions-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

/* ========== Form Card ========== */
.form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
}

/* ========== Chat Pages ========== */
.conversations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.conversation-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.conversation-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.conversation-item.unread {
    background: #eff6ff;
    border-color: var(--primary);
}

.conversation-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.conversation-avatar img,
.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.avatar-placeholder {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.conversation-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.conversation-username {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unread-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.conversation-listing {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-preview {
    color: var(--text);
    font-size: 0.875rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-time {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* Chat Detail */
.chat-header-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.chat-header-info {
    flex: 1;
}

.chat-username {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.chat-username a {
    color: var(--dark);
    text-decoration: none;
}

.chat-username a:hover {
    color: var(--primary);
}

.chat-listing {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.chat-listing a {
    color: var(--primary);
}

.chat-messages-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.messages-container {
    height: 500px;
    overflow-y: auto;
    padding: 2rem;
    background: var(--light);
}

.message-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.message-wrapper.sent {
    align-items: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    word-wrap: break-word;
}

.message-bubble.sent {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-bubble.received {
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.message-wrapper.sent .message-time {
    text-align: right;
}

.empty-chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
}

.empty-chat i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.message-form-container {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid var(--border);
}

.message-form {
    display: flex;
    gap: 1rem;
}

.message-input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    resize: none;
    font-family: inherit;
}

.message-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ========== Transaction Pages ========== */
.request-status-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.request-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 2rem;
}

.request-status-badge {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.request-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.request-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--border);
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.timeline-step.active .timeline-icon {
    background: var(--primary);
    color: white;
}

.timeline-content h5 {
    font-size: 0.875rem;
    font-weight: 600;
}

.listing-preview-card,
.transaction-listing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.listing-preview-image {
    width: 150px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.listing-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-preview-info {
    flex: 1;
}

.game-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.listing-preview-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.listing-preview-meta {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.listing-preview-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 1rem;
}

.message-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.participants-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.participant {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.participant:last-child {
    border-bottom: none;
}

.participant-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.participant-info {
    display: block;
    text-decoration: none;
    color: var(--text);
}

.participant-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.participant-rating {
    color: #fbbf24;
    font-size: 0.875rem;
}

/* ========== Content Pages ========== */
.stats-banner {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.stat-box {
    padding: 1.5rem;
}

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

.stat-box-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.content-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
    line-height: 1.8;
}

.content-card h2 {
    font-size: 2rem;
    margin-top: 0;
}

.content-card h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.content-card h4 {
    font-size: 1.25rem;
}

.rules-section {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.about-feature {
    text-align: center;
    padding: 2rem 1rem;
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-feature-icon i {
    font-size: 2rem;
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: start;
}

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

.step-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.games-list {
    columns: 2;
    column-gap: 2rem;
}

/* ========== Smooth Transitions ========== */
a, button, .card, .btn {
    transition: all 0.2s ease;
}

/* ========== Toast Notifications ========== */
#toast-container {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    pointer-events: none;
}

.toast {
    min-width: 320px;
    max-width: 400px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-radius: 12px;
    overflow: hidden;
}

@keyframes slideInRight {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.hide {
    animation: slideOutRight 0.3s ease-in;
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

.toast-body {
    font-size: 1rem;
    padding: 1rem 1.25rem;
    font-weight: 500;
}

.toast-body i {
    font-size: 1.3rem;
    vertical-align: middle;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

/* Скрываем старые alert */
.django-messages-data {
    display: none !important;
}

.container .alert {
    display: none !important;
}

/* ========== No Image Placeholder ========== */
.no-image-placeholder,
.no-image-placeholder-sm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: white;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.no-image-placeholder-sm {
    min-height: 200px;
}

.no-image-placeholder i,
.no-image-placeholder-sm i {
    font-size: 4rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.no-image-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.listing-no-image .no-image-placeholder {
    min-height: 400px;
}

.listing-detail-image.listing-no-image {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

/* ========== Image Upload Preview ========== */
.custom-file-upload-btn {
    padding: 1.5rem 2rem;
    text-align: center;
    border: 2px dashed #4361ee !important;
    border-radius: 12px;
    background: #f0f4ff;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.custom-file-upload-btn:hover {
    background: #e8eeff;
    border-color: #3f37c9 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
}

.custom-file-upload-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.file-preview {
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1rem;
    background: #f8f9fa;
}

.preview-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.preview-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.preview-info {
    flex: 1;
}

input[type="file"] {
    cursor: pointer !important;
    pointer-events: auto !important;
}

input[type="file"]::file-selector-button {
    cursor: pointer !important;
}
