/* Main stylesheet for Heni Store */
:root {
    --primary-color: #ffb3e6;
    --primary-dark: #ff99dd;
    --primary-light: #ffccf0;
    --secondary-color: #333;
    --background-color: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section spacing */
section {
    margin-bottom: 4rem;
}

section h2 {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

section h2::after {
    content: '';
    display: block;
    margin: 15px auto 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
}

/* Search Container */
.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

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

.search-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.3s;
}

.search-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

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

.search-item-title {
    font-weight: 500;
}

.search-item-price {
    color: var(--primary-color);
    font-weight: bold;
}

.search-all-link {
    background-color: #f8f9fa !important;
    border-top: 2px solid #e9ecef !important;
    font-weight: 500 !important;
    color: var(--primary-color) !important;
    cursor: pointer !important;
}

.search-all-link:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.search-all-link .search-item-title {
    color: inherit !important;
}

.user-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.user-info-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 1rem;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.user-main-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.user-info-header .username {
    font-weight: 700;
    color: white;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-info-header .user-id {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.user-info-header .balance {
    font-size: 14px;
    color: #00ff88;
    font-weight: 700;
    text-align: right;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255,153,255,0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,255,0.4);
}

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

.btn-secondary:hover {
    background-color: #555;
}

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

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

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 400 !important;
    font-size: 0.8rem !important;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,255,0.4);
}

.btn-purchase {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white;
    font-weight: 400 !important;
    font-size: 0.8rem !important;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white;
    font-weight: 400 !important;
    font-size: 0.8rem !important;
}

.btn-purchase:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,255,0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white;
    font-weight: 400 !important;
    font-size: 0.8rem !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,255,0.4);
}

/* Main content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Categories grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--text-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,153,255,0.3);
    text-decoration: none;
    color: var(--text-color);
}

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

/* Account cards */
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.account-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,153,255,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.account-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255,153,255,0.25);
    border-color: rgba(255,153,255,0.3);
}

.account-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    background: #f8f9fa;
}

.account-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

/* For img tags with account-image class */
img.account-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* For div tags with account-image class (no-image placeholder) */
div.account-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.account-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.account-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(255,153,255,0.1);
}

.contact-price {
    font-size: 1.25rem;
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: none !important;
}

.account-description {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4rem;
}



.price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    font-weight: normal;
}

.discount-badge {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

/* Account Info Badges */
.account-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.5rem 0;
    align-items: center;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.info-badge i {
    font-size: 0.8rem;
}

.badge-valorant {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.badge-category {
    background: linear-gradient(135deg, #e056fd, #c44569);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.badge-server {
    background: linear-gradient(135deg, #3742fa, #2f3542);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.badge-level {
    background: linear-gradient(135deg, #2ed573, #1e90ff);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.badge-rank {
    background: linear-gradient(135deg, #ffa502, #ff6348);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Filter buttons styling */
.filter-buttons .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,153,255,0.3);
}

.filter-buttons .btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,255,0.4);
}

.filter-buttons .btn-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    box-shadow: 0 4px 15px rgba(108,117,125,0.3);
}

.filter-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    box-shadow: 0 6px 20px rgba(108,117,125,0.4);
}

/* Featured accounts, latest accounts and account detail page specific styling */
.featured-accounts .account-badges,
.latest-accounts .account-badges,
.account-detail .account-badges {
    margin: 0.75rem 0;
    gap: 0.5rem;
}

.featured-accounts .info-badge,
.latest-accounts .info-badge,
.account-detail .info-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Account detail page larger badges */
.account-detail .info-badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Category accounts specific styling */
.category-accounts .account-badges {
    margin: 0.75rem 0;
    gap: 0.5rem;
}

.category-accounts .info-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Account Actions */
.account-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    align-items: center;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    flex: 1;
    font-weight: 500;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 255, 0.3);
}

.btn-purchase {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    flex: 1;
    font-weight: 500;
}

.btn-purchase:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 255, 0.4);
}

/* Specific styling for account action buttons */
.account-actions .btn-outline,
.account-actions .btn-primary,
.account-actions .btn-purchase {
    padding: 0.5rem 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-weight: 500;
    box-sizing: border-box;
}

/* Adjust outline button to match size with border */
.account-actions .btn-outline {
    padding: calc(0.75rem - 2px) calc(1rem - 2px);
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

.account-actions .btn-contact {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

.account-actions .btn-purchase {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

/* Tăng khoảng cách giữa icon và text trong các nút */
.account-actions .btn i {
    margin-right: 0.5rem !important;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #6c757d;
    flex: none;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
    transform: scale(1.1);
}

.wishlist-btn .fa-heart.active {
    color: #ff6b6b;
}

.btn-icon:hover .fa-heart {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive Account Actions */
@media (max-width: 768px) {
    .account-actions {
        flex-wrap: wrap;
    }

    .btn-outline,
    .btn-primary,
    .btn-purchase {
        min-width: 120px;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .account-actions {
        gap: 0.3rem;
    }

    .btn-outline,
    .btn-primary,
    .btn-purchase {
        min-width: 100px;
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    .btn-icon {
        width: 36px;
        height: 36px;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

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

.account-card:nth-child(1) { animation-delay: 0.1s; }
.account-card:nth-child(2) { animation-delay: 0.2s; }
.account-card:nth-child(3) { animation-delay: 0.3s; }
.account-card:nth-child(4) { animation-delay: 0.4s; }
.account-card:nth-child(5) { animation-delay: 0.5s; }
.account-card:nth-child(6) { animation-delay: 0.6s; }
.account-card:nth-child(7) { animation-delay: 0.7s; }
.account-card:nth-child(8) { animation-delay: 0.8s; }

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Account Detail Layout */
.account-detail-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    min-height: 100vh;
}

.account-detail-container > div:first-child {
    min-height: 100vh;
}

.account-detail-container > div:last-child {
    position: relative;
    height: fit-content;
}

/* Purchase Card Styles */
.purchase-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    position: static;
    border: 2px solid rgba(255,153,255,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.purchase-card:hover {
    box-shadow: 0 12px 40px rgba(255,153,255,0.2);
    border-color: rgba(255,153,255,0.3);
}

.price-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255,153,255,0.1);
}

.main-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(255,153,255,0.2);
    line-height: 1;
    word-break: keep-all;
    white-space: nowrap;
}

.original-price-large {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.discount-badge-large {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 179, 230, 0.3);
    animation: pulse 2s infinite;
}

.purchase-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-purchase {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.25rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-purchase:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,153,255,0.4);
}

.btn-wishlist {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    transform: translateY(-2px);
}

.commitment-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,153,255,0.1);
}

.commitment-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.commitment-item {
    margin-bottom: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.commitment-item:hover {
    background: rgba(255,153,255,0.05);
}

.commitment-icon {
    color: var(--success-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.btn-facebook {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-facebook:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 230, 0.4);
}

/* Notification styles */
.notification {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background: #3b82f6 !important;
    color: white !important;
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    z-index: 10000 !important;
    font-weight: 500 !important;
    max-width: 300px !important;
    word-wrap: break-word !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    pointer-events: auto !important;
}

.notification.notification-success {
    background: #10b981 !important;
}

.notification.notification-error {
    background: #ef4444 !important;
}

.notification.notification-warning {
    background: #f59e0b !important;
}

.notification.show {
    transform: translateX(0) !important;
}

/* Popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
}

.popup-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    color: #374151;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.popup-info .popup-icon {
    color: #3b82f6;
}

.popup-success .popup-icon {
    color: #10b981;
}

.popup-warning .popup-icon {
    color: #f59e0b;
}

.popup-error .popup-icon {
    color: #ef4444;
}

.popup-title {
    color: #374151 !important;
    margin-bottom: 1rem !important;
    font-weight: 600;
    font-size: 1.5rem;
}

.popup-text {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-content p,
.popup-content div {
    color: #4b5563 !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: #374151;
    background: #f3f4f6;
    border-radius: 50%;
}

.popup-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Popup buttons container */
.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.popup-content .btn {
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

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

.popup-content .btn-secondary {
    background: #6b7280;
    color: white;
}

.popup-content .btn-secondary:hover {
    background: #4b5563;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,153,255,0.1);
    transform: translateY(-1px);
}

/* Auth Forms Styling */
.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--primary-dark) 50%,
        #8e44ad 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.auth-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-subtitle {
    color: #666;
    font-size: 0.95rem;
}

/* Floating Label Effect */
.floating-label {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-label input {
    width: 100%;
    padding: 1rem 0.75rem 0.5rem 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.floating-label input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,153,255,0.1);
}

.floating-label label {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 0 0.25rem;
    color: #999;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    height: 4px;
    background: #e1e5e9;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
}

.strength-weak { background: var(--danger-color); width: 25%; }
.strength-fair { background: #ffc107; width: 50%; }
.strength-good { background: #17a2b8; width: 75%; }
.strength-strong { background: var(--success-color); width: 100%; }

.password-requirements {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.requirement:last-child {
    margin-bottom: 0;
}

.requirement i {
    width: 12px;
    font-size: 0.75rem;
    color: var(--danger-color);
    transition: color 0.3s ease;
}

.requirement.met {
    color: var(--success-color);
}

.requirement.met i {
    color: var(--success-color);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Auth Button */
.auth-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,153,255,0.4);
}

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

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.auth-btn:hover::before {
    left: 100%;
}

/* Auth Links */
.auth-links {
    text-align: center;
}

.auth-links p {
    margin-bottom: 0.5rem;
    color: #666;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .search-container {
        order: 2;
        max-width: 100%;
    }

    .user-menu {
        order: 3;
        flex-wrap: wrap;
        justify-content: center;
    }

    .user-info-header {
        align-items: center;
        margin-right: 0.5rem;
        padding: 6px 8px;
    }

    .user-main-info {
        flex-direction: column;
        gap: 2px;
        margin-bottom: 4px;
    }

    .user-info-header .username {
        font-size: 12px;
    }

    .user-info-header .user-id {
        font-size: 10px;
    }

    .user-info-header .balance {
        font-size: 11px;
    }

    .logo {
        order: 1;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Mobile - 2 columns for better readability */
    .accounts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .account-info {
        padding: 1rem;
    }

    .account-image {
        height: 180px;
    }

    .account-title {
        font-size: 1rem;
        min-height: 2.5rem;
    }

    .account-price {
        font-size: 1.1rem;
    }

    .account-description {
        font-size: 0.85rem;
        min-height: 3.5rem;
        -webkit-line-clamp: 2;
    }
}

/* Small tablet - 3 columns */
@media (min-width: 600px) and (max-width: 768px) {
    .accounts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablet responsive - 3 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .accounts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
        padding: 0 0.75rem;
    }

    .account-image {
        height: 220px;
    }
}

/* Large desktop - maintain 3 columns with better spacing */
@media (min-width: 1200px) {
    .accounts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .account-image {
        height: 260px;
    }
}

/* Extra large desktop - 3 columns with maximum spacing */
@media (min-width: 1400px) {
    .accounts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        padding: 0 2rem;
    }

    .account-image {
        height: 280px;
    }
}

/* Account Detail Responsive */
@media (max-width: 1024px) {
    .account-detail-container {
        grid-template-columns: 1fr 320px;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .account-detail-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .account-detail-container > div:last-child {
        order: -1;
    }

    .purchase-card {
        position: static;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        max-height: none;
        overflow-y: visible;
    }

    .main-price {
        font-size: 2.2rem;
    }

    .btn-purchase {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    .commitment-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .main-price {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .main-price {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .purchase-card {
        padding: 1rem;
    }

    .main-price {
        font-size: 1.6rem;
    }

    .btn-purchase {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    .discount-badge-large {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Admin styles */
.admin-sidebar {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.admin-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table th,
.table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background-color: var(--background-color);
    font-weight: 600;
}

.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.status-available {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-sold {
    background-color: #f8d7da;
    color: #721c24;
}



/* Image Gallery Styles */
.main-image {
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.thumbnail {
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

/* Image Modal Styles */
#imageModal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#modalImage {
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Modal navigation buttons */
#prevBtn, #nextBtn {
    transition: all 0.3s ease;
}

#prevBtn:hover, #nextBtn:hover {
    background: rgba(255,255,255,0.4) !important;
    transform: translateY(-50%) scale(1.1);
}

/* ===== ENHANCED DEPOSIT PAGE STYLES ===== */
.deposit-page-wrapper {
    min-height: calc(100vh - 200px);
    background: var(--background-color);
    padding: 0;
}

/* Breadcrumb Section */
.deposit-breadcrumb-section,
.page-breadcrumb-section {
    background: transparent;
    padding: 2rem 0 1rem 0;
    margin-bottom: 1rem;
}

.deposit-breadcrumb,
.page-breadcrumb {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.breadcrumb-nav .separator {
    color: #6c757d;
    margin: 0 0.5rem;
}

.breadcrumb-nav .current {
    color: var(--text-color);
    font-weight: 600;
}

.breadcrumb-title {
    text-align: center;
    color: var(--text-color);
}

.breadcrumb-title h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--primary-color);
}

.breadcrumb-title h1 i {
    font-size: 1.8rem;
}

.breadcrumb-title p {
    margin: 0;
    font-size: 1rem;
    color: #6c757d;
    opacity: 0.8;
}

.deposit-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem 2rem 1rem;
    position: relative;
}

.deposit-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 153, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.deposit-back-link:hover {
    background: rgba(255, 153, 255, 0.15);
    border-color: rgba(255, 153, 255, 0.3);
    transform: translateX(-5px);
    text-decoration: none;
    color: var(--primary-dark);
}

.deposit-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 24px;
    padding: 3rem;
    box-shadow:
        0 20px 40px rgba(255, 153, 255, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 153, 255, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: depositSlideUp 0.8s ease-out;
}

.deposit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--primary-light) 50%,
        #ff80ff 100%);
    border-radius: 24px 24px 0 0;
}

.deposit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 153, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.deposit-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.deposit-icon {
    display: inline-block;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 153, 255, 0.3);
    animation: depositPulse 2s infinite;
}

.deposit-icon.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.deposit-icon i {
    font-size: 2.5rem;
    color: white;
}

.deposit-title {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deposit-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.8;
}

/* Enhanced Form Styles */
.deposit-form {
    position: relative;
    z-index: 1;
}

.deposit-form-group {
    margin-bottom: 2.5rem;
}

.deposit-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.2rem;
}

.deposit-label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.deposit-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e1e5e9;
    border-radius: 16px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #fafbfc, #ffffff);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    font-weight: 500;
}

.deposit-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow:
        0 0 0 4px rgba(255, 153, 255, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transform: translateY(-2px);
}

.deposit-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

/* Enhanced Amount Grid */
.deposit-amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.deposit-amount-btn {
    padding: 1rem 1.25rem;
    border: 2px solid var(--primary-color);
    background: linear-gradient(145deg, white, #f8f9fa);
    color: var(--primary-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(255, 153, 255, 0.1);
}

.deposit-amount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.deposit-amount-btn:hover::before {
    left: 100%;
}

.deposit-amount-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 255, 0.3);
    border-color: var(--primary-dark);
}

.amount-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.amount-currency {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Enhanced Warning */
.deposit-warning {
    background: linear-gradient(145deg, #fff8e1, #fffbf0);
    color: #e65100;
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid #ffcc02;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.1);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.deposit-warning::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff9800, #ffc107);
    border-radius: 16px 0 0 16px;
}

.deposit-warning.important {
    background: linear-gradient(145deg, #fff5f5, #fef2f2);
    color: #c53030;
    border-color: #feb2b2;
}

.deposit-warning.important::before {
    background: linear-gradient(180deg, #f56565, #fc8181);
}

.deposit-warning i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.warning-content {
    flex: 1;
}

.warning-content strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.warning-content p {
    margin: 0;
    line-height: 1.5;
}

/* Enhanced Submit Section */
.deposit-submit-section {
    text-align: center;
    margin-top: 2.5rem;
}

.deposit-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 153, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 280px;
}

.deposit-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.deposit-submit-btn:hover::before {
    left: 100%;
}

.deposit-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 153, 255, 0.4);
}

.deposit-submit-btn:active {
    transform: translateY(-1px);
}

.deposit-submit-btn i {
    font-size: 1.3rem;
}

/* Enhanced QR Section */
.deposit-qr-section {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

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

.qr-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.qr-title i {
    font-size: 1.3rem;
}

.qr-container {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    border: 1px solid rgba(255, 153, 255, 0.1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.deposit-qr-code {
    max-width: 280px;
    width: 100%;
    height: auto;
    border: 4px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(255, 153, 255, 0.2);
    transition: transform 0.3s ease;
    background: white;
    padding: 1rem;
}

.deposit-qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(255, 153, 255, 0.3);
}

/* Enhanced Bank Info */
.deposit-bank-info {
    background: linear-gradient(145deg, #fff0ff, #f8f0ff);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 153, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 153, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.deposit-bank-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 153, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.bank-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.bank-header h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.bank-details {
    position: relative;
    z-index: 1;
}

.deposit-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 153, 255, 0.1);
    transition: all 0.3s ease;
}

.deposit-info-row:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 153, 255, 0.2);
    transform: translateX(5px);
}

.deposit-info-row.highlight {
    background: linear-gradient(145deg, rgba(255, 153, 255, 0.08), rgba(255, 153, 255, 0.05));
    border-color: rgba(255, 153, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 153, 255, 0.1);
}

.deposit-info-label {
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.deposit-info-label i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.deposit-info-value {
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.deposit-info-value.amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.deposit-info-value.content {
    color: #dc3545;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.deposit-copy-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.deposit-copy-btn:hover {
    background: rgba(255, 153, 255, 0.1);
    transform: scale(1.1);
}

/* Enhanced Action Buttons */
.deposit-action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.deposit-check-btn,
.deposit-new-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.deposit-check-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 153, 255, 0.3);
}

.deposit-check-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 255, 0.4);
}

.deposit-new-btn {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.deposit-new-btn:hover {
    background: linear-gradient(135deg, #5a6268, #6c757d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Enhanced Animations */
@keyframes depositSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes depositPulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 153, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 153, 255, 0.4);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 153, 255, 0.3);
        transform: scale(1);
    }
}

/* Deposit Page Responsive Design */
@media (max-width: 768px) {
    .deposit-page-wrapper {
        padding: 0;
    }

    .deposit-breadcrumb-section,
    .page-breadcrumb-section {
        padding: 1.5rem 0 0.5rem 0;
        margin-bottom: 1rem;
    }

    .breadcrumb-title h1 {
        font-size: 1.6rem;
    }

    .breadcrumb-title h1 i {
        font-size: 1.4rem;
    }

    .breadcrumb-nav {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .deposit-container {
        margin: 0;
        padding: 0 0.5rem;
    }

    .deposit-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }

    .deposit-title {
        font-size: 1.6rem;
    }

    .deposit-subtitle {
        font-size: 1rem;
    }

    .deposit-input {
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
    }

    .deposit-amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .deposit-amount-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .amount-value {
        font-size: 1rem;
    }

    .deposit-submit-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: 240px;
    }

    .deposit-qr-code {
        max-width: 240px;
    }

    .deposit-bank-info {
        padding: 1.5rem;
    }

    .deposit-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }

    .deposit-info-value {
        width: 100%;
        justify-content: space-between;
    }

    .deposit-action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .deposit-check-btn,
    .deposit-new-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .deposit-breadcrumb-section,
    .page-breadcrumb-section {
        padding: 1rem 0 0.5rem 0;
        margin-bottom: 0.5rem;
    }

    .breadcrumb-title h1 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .breadcrumb-nav {
        font-size: 0.8rem;
        justify-content: center;
    }

    .deposit-card {
        padding: 1.5rem 1rem;
    }

    .deposit-title {
        font-size: 1.4rem;
    }

    .deposit-amount-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .deposit-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 200px;
    }

    .deposit-qr-code {
        max-width: 200px;
    }

    .qr-container {
        padding: 1rem;
    }
}

/* Toast Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===== DEPOSIT STATUS PAGE STYLES ===== */
.deposit-status-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.status-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.status-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.status-header p {
    color: #666;
    margin: 0;
}

.no-deposits {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.no-deposits i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

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

.deposit-item {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.deposit-item.pending {
    border-color: #ffc107;
    background: #fff9e6;
}

.deposit-item.completed {
    border-color: #28a745;
    background: #f0fff4;
}

.deposit-item.failed {
    border-color: #dc3545;
    background: #fff5f5;
}

.deposit-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.deposit-amount {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.status-pending {
    background: #ffc107;
    color: #856404;
}

.status-completed {
    background: #28a745;
    color: white;
}

.status-failed {
    background: #dc3545;
    color: white;
}

.deposit-details {
    flex: 1;
    margin-left: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.detail-row .label {
    font-weight: 600;
    color: #666;
    min-width: 120px;
}

.detail-row .value {
    color: #333;
    text-align: right;
}

.deposit-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.pending-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #856404;
    font-size: 0.875rem;
}

.status-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

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

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

@media (max-width: 768px) {
    .deposit-info {
        flex-direction: column;
        gap: 1rem;
    }

    .deposit-details {
        margin-left: 0;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .detail-row .value {
        text-align: left;
    }

    .deposit-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .status-actions {
        flex-direction: column;
    }
}


