﻿/* Random Account Cards Styling - Dark Gaming Theme */
.account-list {
    padding: 40px 0;
    background-color: transparent;
}

.account-list__content {
    margin-bottom: 40px;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.account-card {
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.account-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.account-card__image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.account-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.85);
}

.account-card:hover .account-card__image img {
    transform: scale(1.05);
    filter: brightness(1.0);
}

.account-card__content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}

.account-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-card__id {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.account-card__price {
    padding: 10px 0;
    text-align: center;
}

.highlight-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #06b6d4;
    display: block;
}

.account-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 0;
    background: rgba(139, 92, 246, 0.08);
    color: #a78bfa;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.account-card__link-text {
    font-size: 1.5rem;
}

.account-card__link i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.account-card:hover .account-card__link {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

.account-card:hover .account-card__link i {
    transform: translateX(3px);
}

.no-results {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.no-results__icon {
    font-size: 4rem;
    color: #06b6d4;
    margin-bottom: 20px;
}

.no-results__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.no-results__message {
    font-size: 1.6rem;
    color: #94a3b8;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 15px;
    color: #94a3b8;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #1a1a2e;
}

.pagination .page-item.active .page-link {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

.pagination .page-link:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link:hover {
    background: #8b5cf6;
    color: white;
}

.action-btn--card {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.action-btn--card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.45);
    color: white;
}

@media (max-width: 992px) {
    .account-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 15px;
    }

    .account-card__image {
        height: 160px;
    }

    .account-card__content {
        padding: 15px;
    }

    .highlight-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .account-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .account-card__image {
        height: 200px;
    }
}