.market-container {
    padding: 120px 5% 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.account-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.account-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
}

.account-banner {
    width: 100%;
    height: 180px;
    background: #0f172a;
    position: relative;
}

.account-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #020617;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
}

.account-details {
    padding: 20px;
}

.account-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.specs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.spec-item {
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.active {
    color: var(--primary) !important;
}

.btn-delete {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(4px);
    transition: 0.2s;
}

.btn-delete:hover {
    background: #ef4444;
    transform: scale(1.05);
}

.account-card {
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav-fab {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
    display: none;
}

.fab-item {
    background: var(--primary);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fab-item:active {
    transform: scale(0.85);
}

@media screen and (max-width: 768px) {
    .mobile-nav-fab {
        display: block;
    }
}